blob: e4e22463a0de5676cd4b92b24e5d0939a0b85cf9 [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>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -040054 <groupId>org.slf4j</groupId>
55 <artifactId>slf4j-api</artifactId>
56 </dependency>
57 <dependency>
58 <groupId>org.onap.ccsdk.sli.core</groupId>
59 <artifactId>sli-common</artifactId>
60 <scope>compile</scope>
61 </dependency>
Alexis de Talhouët00ea51d2018-08-24 08:37:11 -040062 <dependency>
63 <groupId>org.onap.ccsdk.sli.core</groupId>
64 <artifactId>sliPluginUtils-provider</artifactId>
65 <version>${project.version}</version>
66 <scope>compile</scope>
67 </dependency>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -040068
69 <!--Testing-->
70 <dependency>
71 <groupId>junit</groupId>
72 <artifactId>junit</artifactId>
73 <version>${junit.version}</version>
74 <scope>test</scope>
75 </dependency>
76 <dependency>
77 <groupId>org.mockito</groupId>
78 <artifactId>mockito-core</artifactId>
79 <version>2.2.11</version>
80 <scope>test</scope>
81 </dependency>
82 <dependency>
83 <groupId>com.github.tomakehurst</groupId>
84 <artifactId>wiremock</artifactId>
85 <version>2.7.1</version>
86 <scope>test</scope>
87 </dependency>
88 <dependency>
89 <groupId>org.eclipse.jetty</groupId>
90 <artifactId>jetty-server</artifactId>
91 <version>9.3.1.v20150714</version>
92 <scope>test</scope>
93 </dependency>
94 <dependency>
95 <groupId>ch.qos.logback</groupId>
96 <artifactId>logback-classic</artifactId>
97 <version>1.2.3</version>
98 <scope>test</scope>
99 </dependency>
100
Alexis de Talhouëtd10de422018-08-15 14:29:07 -0400101 </dependencies>
102
103 <build>
104 <plugins>
105 <plugin>
106 <groupId>org.apache.felix</groupId>
107 <artifactId>maven-bundle-plugin</artifactId>
108 <extensions>true</extensions>
109 <configuration>
110 <instructions>
111 <Export-Package>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -0400112 org.onap.ccsdk.sli.adaptors.netbox.api,
Alexis de Talhouëtd10de422018-08-15 14:29:07 -0400113 org.onap.ccsdk.sli.adaptors.netbox.ipam,
Alexis de Talhouëteae6b962018-08-15 14:30:43 -0400114 org.onap.ccsdk.sli.adaptors.netbox.model
Alexis de Talhouëtd10de422018-08-15 14:29:07 -0400115 </Export-Package>
116 </instructions>
117 </configuration>
118 </plugin>
119 </plugins>
120 </build>
121
122</project>