Release ccsdk/sli/adaptors
[ccsdk/sli/adaptors.git] / netbox-client / provider / pom.xml
1 <?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   -->
17 <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">
18
19     <parent>
20         <groupId>org.onap.ccsdk.parent</groupId>
21         <artifactId>binding-parent</artifactId>
22         <version>1.3.4</version>
23         <relativePath/>
24     </parent>
25
26     <groupId>org.onap.ccsdk.sli.adaptors</groupId>
27     <artifactId>netbox-client-provider</artifactId>
28     <version>0.5.3</version>
29     <packaging>bundle</packaging>
30     <modelVersion>4.0.0</modelVersion>
31
32     <name>ccsdk-sli-adaptors :: netbox-client :: ${project.artifactId}</name>
33
34     <properties>
35         <ccsdk.sli.adaptors.version>${project.version}</ccsdk.sli.adaptors.version>
36     </properties>
37
38     <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
50     <dependencies>
51
52         <dependency>
53             <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>
59             <artifactId>httpcore</artifactId>
60             <version>${apache.httpcomponents.core.version}</version>
61         </dependency>
62         <dependency>
63             <groupId>org.apache.httpcomponents</groupId>
64             <artifactId>httpclient</artifactId>
65             <version>${apache.httpcomponents.client.version}</version>
66         </dependency>
67         <dependency>
68             <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>provided</scope>
75         </dependency>
76         <dependency>
77             <groupId>org.onap.ccsdk.sli.core</groupId>
78             <artifactId>sliPluginUtils-provider</artifactId>
79             <version>${project.version}</version>
80             <scope>provided</scope>
81         </dependency>
82         <dependency>
83             <groupId>org.osgi</groupId>
84             <artifactId>org.osgi.core</artifactId>
85             <scope>provided</scope>
86         </dependency>
87
88         <!--Testing-->
89         <dependency>
90             <groupId>junit</groupId>
91             <artifactId>junit</artifactId>
92             <scope>test</scope>
93         </dependency>
94         <!-- Requires mockito v2 -->
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             <scope>test</scope>
105         </dependency>
106         <!-- Need to override ODL version of jetty-server to get test to compile -->
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             <scope>test</scope>
117         </dependency>
118     </dependencies>
119
120     <build>
121         <plugins>
122             <plugin>
123                 <groupId>org.apache.felix</groupId>
124                 <artifactId>maven-bundle-plugin</artifactId>
125                 <extensions>true</extensions>
126                 <configuration>
127                     <instructions>
128                         <Export-Package>
129                             org.onap.ccsdk.sli.adaptors.netbox.api,
130                             org.onap.ccsdk.sli.adaptors.netbox.ipam,
131                             org.onap.ccsdk.sli.adaptors.netbox.model
132                         </Export-Package>
133                     </instructions>
134                 </configuration>
135             </plugin>
136         </plugins>
137     </build>
138
139 </project>