blob: 2e2a56e43c1e5949a8cb735cb4bbe16ece9f34ff [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 -->
Dan Timoney5383edf2022-10-20 15:29:33 -040017
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -050018<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 -050019 <modelVersion>4.0.0</modelVersion>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040020
21 <parent>
Dan Timoney5de81962021-01-26 13:15:47 -050022 <groupId>org.onap.ccsdk.parent</groupId>
23 <artifactId>binding-parent</artifactId>
Dan Timoneyb5a1f492022-11-07 13:38:17 -050024 <version>2.5.0</version>
Dan Timoneye93adc22021-02-22 14:11:46 -050025 <relativePath/>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040026 </parent>
27
28 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
29 <artifactId>netbox-client-provider</artifactId>
Dan Timoneyef9ea4a2022-11-10 14:55:19 -050030 <version>1.6.1-SNAPSHOT</version>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040031 <packaging>bundle</packaging>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040032
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050033 <name>ccsdk-sli-adaptors :: ${project.artifactId}</name>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040034
Timoney, Dan (dt5972)f200a722019-01-03 16:24:22 -050035 <dependencyManagement>
Dan Timoney69e393d2021-02-17 15:25:45 -050036 <dependencies>
37 <dependency>
38 <groupId>org.onap.ccsdk.sli.core</groupId>
39 <artifactId>sli-core-artifacts</artifactId>
40 <version>${project.version}</version>
41 <type>pom</type>
42 <scope>import</scope>
43 </dependency>
44 </dependencies>
Timoney, Dan (dt5972)f200a722019-01-03 16:24:22 -050045 </dependencyManagement>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040046 <dependencies>
Alexis de Talhouëte2b21382018-08-21 11:29:49 -040047
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040048 <dependency>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040049 <groupId>com.google.code.gson</groupId>
50 <artifactId>gson</artifactId>
Dan Timoney5de81962021-01-26 13:15:47 -050051 <version>${gson.version}</version>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040052 </dependency>
53 <dependency>
54 <groupId>org.apache.httpcomponents</groupId>
Alexis de Talhouëte2b21382018-08-21 11:29:49 -040055 <artifactId>httpcore</artifactId>
Dan Timoney5de81962021-01-26 13:15:47 -050056 <version>${apache.httpcomponents.core.version}</version>
Alexis de Talhouëte2b21382018-08-21 11:29:49 -040057 </dependency>
58 <dependency>
59 <groupId>org.apache.httpcomponents</groupId>
60 <artifactId>httpclient</artifactId>
Dan Timoney5de81962021-01-26 13:15:47 -050061 <version>${apache.httpcomponents.client.version}</version>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -040062 </dependency>
63 <dependency>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -040064 <groupId>org.slf4j</groupId>
65 <artifactId>slf4j-api</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>org.onap.ccsdk.sli.core</groupId>
69 <artifactId>sli-common</artifactId>
Agarwal, Ruchira (ra1926)83559dd2019-11-05 18:16:50 +000070 <scope>provided</scope>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -040071 </dependency>
Alexis de Talhouët00ea51d2018-08-24 08:37:11 -040072 <dependency>
73 <groupId>org.onap.ccsdk.sli.core</groupId>
74 <artifactId>sliPluginUtils-provider</artifactId>
Dan Timoneybe5662d2020-12-07 12:23:05 -050075 <version>${project.version}</version>
Agarwal, Ruchira (ra1926)83559dd2019-11-05 18:16:50 +000076 <scope>provided</scope>
Alexis de Talhouët00ea51d2018-08-24 08:37:11 -040077 </dependency>
Alexis de Talhouëted716252019-02-09 15:01:10 -050078 <dependency>
79 <groupId>org.osgi</groupId>
80 <artifactId>org.osgi.core</artifactId>
81 <scope>provided</scope>
82 </dependency>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -040083
84 <!--Testing-->
85 <dependency>
86 <groupId>junit</groupId>
87 <artifactId>junit</artifactId>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -040088 <scope>test</scope>
89 </dependency>
Timoney, Dan (dt5972)793f7142019-06-20 19:16:28 -040090 <!-- Requires mockito v2 -->
Alexis de Talhouëteae6b962018-08-15 14:30:43 -040091 <dependency>
92 <groupId>org.mockito</groupId>
93 <artifactId>mockito-core</artifactId>
94 <version>2.2.11</version>
95 <scope>test</scope>
96 </dependency>
97 <dependency>
98 <groupId>com.github.tomakehurst</groupId>
99 <artifactId>wiremock</artifactId>
Dan Timoneya612cdd2020-03-05 11:51:01 -0500100 <version>2.23.2</version>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -0400101 <scope>test</scope>
102 </dependency>
103 <dependency>
104 <groupId>org.eclipse.jetty</groupId>
105 <artifactId>jetty-server</artifactId>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -0400106 <scope>test</scope>
107 </dependency>
108 <dependency>
109 <groupId>ch.qos.logback</groupId>
110 <artifactId>logback-classic</artifactId>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -0400111 <scope>test</scope>
112 </dependency>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -0400113 </dependencies>
114
115 <build>
116 <plugins>
117 <plugin>
118 <groupId>org.apache.felix</groupId>
119 <artifactId>maven-bundle-plugin</artifactId>
120 <extensions>true</extensions>
121 <configuration>
122 <instructions>
123 <Export-Package>
Alexis de Talhouëteae6b962018-08-15 14:30:43 -0400124 org.onap.ccsdk.sli.adaptors.netbox.api,
Alexis de Talhouëtd10de422018-08-15 14:29:07 -0400125 org.onap.ccsdk.sli.adaptors.netbox.ipam,
Alexis de Talhouëteae6b962018-08-15 14:30:43 -0400126 org.onap.ccsdk.sli.adaptors.netbox.model
Alexis de Talhouëtd10de422018-08-15 14:29:07 -0400127 </Export-Package>
128 </instructions>
129 </configuration>
130 </plugin>
131 </plugins>
132 </build>
Alexis de Talhouëtd10de422018-08-15 14:29:07 -0400133</project>