blob: 2ffcaea9a3501eaa9f85f045e2f6ae0420e6518a [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>
Alexis de Talhouëte2b21382018-08-21 11:29:49 -040037
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040038 <dependency>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040039 <groupId>com.google.code.gson</groupId>
40 <artifactId>gson</artifactId>
41 <version>${gson.version}</version>
42 </dependency>
43 <dependency>
44 <groupId>org.apache.httpcomponents</groupId>
Alexis de Talhouëte2b21382018-08-21 11:29:49 -040045 <artifactId>httpcore</artifactId>
46 <version>${apache.httpcomponents.core.version}</version>
47 </dependency>
48 <dependency>
49 <groupId>org.apache.httpcomponents</groupId>
50 <artifactId>httpclient</artifactId>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040051 <version>${apache.httpcomponents.client.version}</version>
52 </dependency>
53 <dependency>
54 <groupId>org.apache.httpcomponents</groupId>
Alexis de Talhouëte2b21382018-08-21 11:29:49 -040055 <artifactId>httpasyncclient</artifactId>
56 <version>4.1.1</version>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040057 </dependency>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -040058 <dependency>
59 <groupId>org.slf4j</groupId>
60 <artifactId>slf4j-api</artifactId>
61 </dependency>
62 <dependency>
63 <groupId>org.onap.ccsdk.sli.core</groupId>
64 <artifactId>sli-common</artifactId>
65 <scope>compile</scope>
66 </dependency>
67
68 <!--Testing-->
69 <dependency>
70 <groupId>junit</groupId>
71 <artifactId>junit</artifactId>
72 <version>${junit.version}</version>
73 <scope>test</scope>
74 </dependency>
75 <dependency>
76 <groupId>org.mockito</groupId>
77 <artifactId>mockito-core</artifactId>
78 <version>2.2.11</version>
79 <scope>test</scope>
80 </dependency>
81 <dependency>
82 <groupId>com.github.tomakehurst</groupId>
83 <artifactId>wiremock</artifactId>
84 <version>2.7.1</version>
85 <scope>test</scope>
86 </dependency>
87 <dependency>
88 <groupId>org.eclipse.jetty</groupId>
89 <artifactId>jetty-server</artifactId>
90 <version>9.3.1.v20150714</version>
91 <scope>test</scope>
92 </dependency>
93 <dependency>
94 <groupId>ch.qos.logback</groupId>
95 <artifactId>logback-classic</artifactId>
96 <version>1.2.3</version>
97 <scope>test</scope>
98 </dependency>
99
Alexis de Talhouëtd10de422018-08-15 14:29:07 -0400100 </dependencies>
101
102 <build>
103 <plugins>
104 <plugin>
105 <groupId>org.apache.felix</groupId>
106 <artifactId>maven-bundle-plugin</artifactId>
107 <extensions>true</extensions>
108 <configuration>
109 <instructions>
110 <Export-Package>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -0400111 org.onap.ccsdk.sli.adaptors.netbox.api,
Alexis de Talhouëtd10de422018-08-15 14:29:07 -0400112 org.onap.ccsdk.sli.adaptors.netbox.ipam,
Alexis de Talhouëteae6b962018-08-15 14:30:43 -0400113 org.onap.ccsdk.sli.adaptors.netbox.model
Alexis de Talhouëtd10de422018-08-15 14:29:07 -0400114 </Export-Package>
115 </instructions>
116 </configuration>
117 </plugin>
118 </plugins>
119 </build>
120
121</project>