blob: 16695f20b3035b3b403c00d07bddeeb3461f4f9a [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 -->
17<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20
21 <parent>
22 <groupId>org.onap.ccsdk.parent</groupId>
23 <artifactId>binding-parent</artifactId>
24 <version>1.1.0-SNAPSHOT</version>
25 <relativePath/>
26 </parent>
27
28 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
29 <artifactId>netbox-client-provider</artifactId>
30 <version>0.3.0-SNAPSHOT</version>
31 <packaging>bundle</packaging>
32 <modelVersion>4.0.0</modelVersion>
33
34 <name>ccsdk-sli-adaptors :: netbox-client :: ${project.artifactId}</name>
35
36 <dependencies>
37 <dependency>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040038 <groupId>com.google.code.gson</groupId>
39 <artifactId>gson</artifactId>
40 <version>${gson.version}</version>
41 </dependency>
42 <dependency>
43 <groupId>org.apache.httpcomponents</groupId>
44 <artifactId>httpclient-osgi</artifactId>
45 <version>${apache.httpcomponents.client.version}</version>
46 </dependency>
47 <dependency>
48 <groupId>org.apache.httpcomponents</groupId>
49 <artifactId>httpasyncclient-osgi</artifactId>
50 <version>4.1.3</version>
51 </dependency>
52 <dependency>
53 <groupId>org.apache.httpcomponents</groupId>
54 <artifactId>httpcore-osgi</artifactId>
55 <version>${apache.httpcomponents.core.version}</version>
56 </dependency>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -040057 <dependency>
58 <groupId>org.slf4j</groupId>
59 <artifactId>slf4j-api</artifactId>
60 </dependency>
61 <dependency>
62 <groupId>org.onap.ccsdk.sli.core</groupId>
63 <artifactId>sli-common</artifactId>
64 <scope>compile</scope>
65 </dependency>
66
67 <!--Testing-->
68 <dependency>
69 <groupId>junit</groupId>
70 <artifactId>junit</artifactId>
71 <version>${junit.version}</version>
72 <scope>test</scope>
73 </dependency>
74 <dependency>
75 <groupId>org.mockito</groupId>
76 <artifactId>mockito-core</artifactId>
77 <version>2.2.11</version>
78 <scope>test</scope>
79 </dependency>
80 <dependency>
81 <groupId>com.github.tomakehurst</groupId>
82 <artifactId>wiremock</artifactId>
83 <version>2.7.1</version>
84 <scope>test</scope>
85 </dependency>
86 <dependency>
87 <groupId>org.eclipse.jetty</groupId>
88 <artifactId>jetty-server</artifactId>
89 <version>9.3.1.v20150714</version>
90 <scope>test</scope>
91 </dependency>
92 <dependency>
93 <groupId>ch.qos.logback</groupId>
94 <artifactId>logback-classic</artifactId>
95 <version>1.2.3</version>
96 <scope>test</scope>
97 </dependency>
98
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040099 </dependencies>
100
101 <build>
102 <plugins>
103 <plugin>
104 <groupId>org.apache.felix</groupId>
105 <artifactId>maven-bundle-plugin</artifactId>
106 <extensions>true</extensions>
107 <configuration>
108 <instructions>
109 <Export-Package>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -0400110 org.onap.ccsdk.sli.adaptors.netbox.api,
Alexis de Talhouëtd10de422018-08-15 14:29:07 -0400111 org.onap.ccsdk.sli.adaptors.netbox.ipam,
Alexis de Talhouëteae6b962018-08-15 14:30:43 -0400112 org.onap.ccsdk.sli.adaptors.netbox.model
Alexis de Talhouëtd10de422018-08-15 14:29:07 -0400113 </Export-Package>
114 </instructions>
115 </configuration>
116 </plugin>
117 </plugins>
118 </build>
119
120</project>