blob: 4bc0dcd584fb4a01276424517606d4f59bb87390 [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">
Dan Timoneya612cdd2020-03-05 11:51:01 -050018 <modelVersion>4.0.0</modelVersion>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040019
20 <parent>
Dan Timoney5de81962021-01-26 13:15:47 -050021 <groupId>org.onap.ccsdk.parent</groupId>
22 <artifactId>binding-parent</artifactId>
Dan Timoney21625332023-11-08 09:29:37 -050023 <version>2.6.1</version>
Dan Timoneye93adc22021-02-22 14:11:46 -050024 <relativePath/>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040025 </parent>
26
27 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
28 <artifactId>netbox-client-provider</artifactId>
Dan Timoney79cddca2024-04-18 09:40:56 -040029 <version>1.7.3-SNAPSHOT</version>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040030 <packaging>bundle</packaging>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040031
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050032 <name>ccsdk-sli-adaptors :: ${project.artifactId}</name>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040033
Timoney, Dan (dt5972)f200a722019-01-03 16:24:22 -050034 <dependencyManagement>
Dan Timoney69e393d2021-02-17 15:25:45 -050035 <dependencies>
36 <dependency>
37 <groupId>org.onap.ccsdk.sli.core</groupId>
38 <artifactId>sli-core-artifacts</artifactId>
39 <version>${project.version}</version>
40 <type>pom</type>
41 <scope>import</scope>
42 </dependency>
43 </dependencies>
Timoney, Dan (dt5972)f200a722019-01-03 16:24:22 -050044 </dependencyManagement>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040045 <dependencies>
Alexis de Talhouëte2b21382018-08-21 11:29:49 -040046
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040047 <dependency>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040048 <groupId>com.google.code.gson</groupId>
49 <artifactId>gson</artifactId>
Dan Timoney5de81962021-01-26 13:15:47 -050050 <version>${gson.version}</version>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040051 </dependency>
52 <dependency>
53 <groupId>org.apache.httpcomponents</groupId>
Alexis de Talhouëte2b21382018-08-21 11:29:49 -040054 <artifactId>httpcore</artifactId>
Dan Timoney5de81962021-01-26 13:15:47 -050055 <version>${apache.httpcomponents.core.version}</version>
Alexis de Talhouëte2b21382018-08-21 11:29:49 -040056 </dependency>
57 <dependency>
58 <groupId>org.apache.httpcomponents</groupId>
59 <artifactId>httpclient</artifactId>
Dan Timoney5de81962021-01-26 13:15:47 -050060 <version>${apache.httpcomponents.client.version}</version>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040061 </dependency>
62 <dependency>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -040063 <groupId>org.slf4j</groupId>
64 <artifactId>slf4j-api</artifactId>
65 </dependency>
66 <dependency>
67 <groupId>org.onap.ccsdk.sli.core</groupId>
68 <artifactId>sli-common</artifactId>
Agarwal, Ruchira (ra1926)83559dd2019-11-05 18:16:50 +000069 <scope>provided</scope>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -040070 </dependency>
Alexis de Talhouët00ea51d2018-08-24 08:37:11 -040071 <dependency>
72 <groupId>org.onap.ccsdk.sli.core</groupId>
73 <artifactId>sliPluginUtils-provider</artifactId>
Dan Timoneybe5662d2020-12-07 12:23:05 -050074 <version>${project.version}</version>
Agarwal, Ruchira (ra1926)83559dd2019-11-05 18:16:50 +000075 <scope>provided</scope>
Alexis de Talhouët00ea51d2018-08-24 08:37:11 -040076 </dependency>
Alexis de Talhouëted716252019-02-09 15:01:10 -050077 <dependency>
78 <groupId>org.osgi</groupId>
79 <artifactId>org.osgi.core</artifactId>
80 <scope>provided</scope>
81 </dependency>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -040082
83 <!--Testing-->
84 <dependency>
85 <groupId>junit</groupId>
86 <artifactId>junit</artifactId>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -040087 <scope>test</scope>
88 </dependency>
Timoney, Dan (dt5972)793f7142019-06-20 19:16:28 -040089 <!-- Requires mockito v2 -->
Alexis de Talhouëteae6b962018-08-15 14:30:43 -040090 <dependency>
91 <groupId>org.mockito</groupId>
92 <artifactId>mockito-core</artifactId>
93 <version>2.2.11</version>
94 <scope>test</scope>
95 </dependency>
96 <dependency>
97 <groupId>com.github.tomakehurst</groupId>
98 <artifactId>wiremock</artifactId>
Dan Timoneya612cdd2020-03-05 11:51:01 -050099 <version>2.23.2</version>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -0400100 <scope>test</scope>
101 </dependency>
102 <dependency>
103 <groupId>org.eclipse.jetty</groupId>
104 <artifactId>jetty-server</artifactId>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -0400105 <scope>test</scope>
106 </dependency>
107 <dependency>
108 <groupId>ch.qos.logback</groupId>
109 <artifactId>logback-classic</artifactId>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -0400110 <scope>test</scope>
111 </dependency>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -0400112 </dependencies>
113
114 <build>
115 <plugins>
116 <plugin>
117 <groupId>org.apache.felix</groupId>
118 <artifactId>maven-bundle-plugin</artifactId>
119 <extensions>true</extensions>
120 <configuration>
121 <instructions>
122 <Export-Package>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -0400123 org.onap.ccsdk.sli.adaptors.netbox.api,
Alexis de Talhouëtd10de422018-08-15 14:29:07 -0400124 org.onap.ccsdk.sli.adaptors.netbox.ipam,
Alexis de Talhouëteae6b962018-08-15 14:30:43 -0400125 org.onap.ccsdk.sli.adaptors.netbox.model
Alexis de Talhouëtd10de422018-08-15 14:29:07 -0400126 </Export-Package>
127 </instructions>
128 </configuration>
129 </plugin>
130 </plugins>
131 </build>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -0400132</project>