blob: f7e8ccf92fdda3e9986e272cc01d64fda70e618a [file] [log] [blame]
Alexis de Talhouëtd10de422018-08-15 14:29:07 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 Copyright (C) 2018 AT&T, Bell Canada
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16 -->
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -050017<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040018
19 <parent>
20 <groupId>org.onap.ccsdk.parent</groupId>
21 <artifactId>binding-parent</artifactId>
Timoney, Dan (dt5972)f200a722019-01-03 16:24:22 -050022 <version>1.2.1-SNAPSHOT</version>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040023 <relativePath/>
24 </parent>
25
26 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
27 <artifactId>netbox-client-provider</artifactId>
Timoney, Dan (dt5972)f200a722019-01-03 16:24:22 -050028 <version>0.4.1-SNAPSHOT</version>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040029 <packaging>bundle</packaging>
30 <modelVersion>4.0.0</modelVersion>
31
32 <name>ccsdk-sli-adaptors :: netbox-client :: ${project.artifactId}</name>
33
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -050034 <properties>
35 <ccsdk.sli.adaptors.version>${project.version}</ccsdk.sli.adaptors.version>
36 </properties>
37
Timoney, Dan (dt5972)f200a722019-01-03 16:24:22 -050038 <dependencyManagement>
39 <dependencies>
40 <dependency>
41 <groupId>org.onap.ccsdk.sli.core</groupId>
42 <artifactId>sli-core-artifacts</artifactId>
43 <version>${ccsdk.sli.core.version}</version>
44 <type>pom</type>
45 <scope>import</scope>
46 </dependency>
47 </dependencies>
48 </dependencyManagement>
49
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040050 <dependencies>
Alexis de Talhouëte2b21382018-08-21 11:29:49 -040051
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040052 <dependency>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040053 <groupId>com.google.code.gson</groupId>
54 <artifactId>gson</artifactId>
55 <version>${gson.version}</version>
56 </dependency>
57 <dependency>
58 <groupId>org.apache.httpcomponents</groupId>
Alexis de Talhouëte2b21382018-08-21 11:29:49 -040059 <artifactId>httpcore</artifactId>
60 <version>${apache.httpcomponents.core.version}</version>
61 </dependency>
62 <dependency>
63 <groupId>org.apache.httpcomponents</groupId>
64 <artifactId>httpclient</artifactId>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040065 <version>${apache.httpcomponents.client.version}</version>
66 </dependency>
67 <dependency>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -040068 <groupId>org.slf4j</groupId>
69 <artifactId>slf4j-api</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>org.onap.ccsdk.sli.core</groupId>
73 <artifactId>sli-common</artifactId>
74 <scope>compile</scope>
75 </dependency>
Alexis de Talhouët00ea51d2018-08-24 08:37:11 -040076 <dependency>
77 <groupId>org.onap.ccsdk.sli.core</groupId>
78 <artifactId>sliPluginUtils-provider</artifactId>
79 <version>${project.version}</version>
80 <scope>compile</scope>
81 </dependency>
Alexis de Talhouëted716252019-02-09 15:01:10 -050082 <dependency>
83 <groupId>org.osgi</groupId>
84 <artifactId>org.osgi.core</artifactId>
85 <scope>provided</scope>
86 </dependency>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -040087
88 <!--Testing-->
89 <dependency>
90 <groupId>junit</groupId>
91 <artifactId>junit</artifactId>
92 <version>${junit.version}</version>
93 <scope>test</scope>
94 </dependency>
95 <dependency>
96 <groupId>org.mockito</groupId>
97 <artifactId>mockito-core</artifactId>
98 <version>2.2.11</version>
99 <scope>test</scope>
100 </dependency>
101 <dependency>
102 <groupId>com.github.tomakehurst</groupId>
103 <artifactId>wiremock</artifactId>
104 <version>2.7.1</version>
105 <scope>test</scope>
106 </dependency>
107 <dependency>
108 <groupId>org.eclipse.jetty</groupId>
109 <artifactId>jetty-server</artifactId>
110 <version>9.3.1.v20150714</version>
111 <scope>test</scope>
112 </dependency>
113 <dependency>
114 <groupId>ch.qos.logback</groupId>
115 <artifactId>logback-classic</artifactId>
116 <version>1.2.3</version>
117 <scope>test</scope>
118 </dependency>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -0400119 </dependencies>
120
121 <build>
122 <plugins>
123 <plugin>
124 <groupId>org.apache.felix</groupId>
125 <artifactId>maven-bundle-plugin</artifactId>
126 <extensions>true</extensions>
127 <configuration>
128 <instructions>
129 <Export-Package>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -0400130 org.onap.ccsdk.sli.adaptors.netbox.api,
Alexis de Talhouëtd10de422018-08-15 14:29:07 -0400131 org.onap.ccsdk.sli.adaptors.netbox.ipam,
Alexis de Talhouëteae6b962018-08-15 14:30:43 -0400132 org.onap.ccsdk.sli.adaptors.netbox.model
Alexis de Talhouëtd10de422018-08-15 14:29:07 -0400133 </Export-Package>
134 </instructions>
135 </configuration>
136 </plugin>
137 </plugins>
138 </build>
139
140</project>