Alexis de Talhouët | d10de42 | 2018-08-15 14:29:07 -0400 | [diff] [blame] | 1 | <?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) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 17 | <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 Timoney | a612cdd | 2020-03-05 11:51:01 -0500 | [diff] [blame^] | 18 | <modelVersion>4.0.0</modelVersion> |
Alexis de Talhouët | d10de42 | 2018-08-15 14:29:07 -0400 | [diff] [blame] | 19 | |
| 20 | <parent> |
| 21 | <groupId>org.onap.ccsdk.parent</groupId> |
| 22 | <artifactId>binding-parent</artifactId> |
Dan Timoney | a612cdd | 2020-03-05 11:51:01 -0500 | [diff] [blame^] | 23 | <version>2.0.0-SNAPSHOT</version> |
Alexis de Talhouët | d10de42 | 2018-08-15 14:29:07 -0400 | [diff] [blame] | 24 | <relativePath/> |
| 25 | </parent> |
| 26 | |
| 27 | <groupId>org.onap.ccsdk.sli.adaptors</groupId> |
| 28 | <artifactId>netbox-client-provider</artifactId> |
Dan Timoney | a612cdd | 2020-03-05 11:51:01 -0500 | [diff] [blame^] | 29 | <version>1.0.0-SNAPSHOT</version> |
Alexis de Talhouët | d10de42 | 2018-08-15 14:29:07 -0400 | [diff] [blame] | 30 | <packaging>bundle</packaging> |
Alexis de Talhouët | d10de42 | 2018-08-15 14:29:07 -0400 | [diff] [blame] | 31 | |
| 32 | <name>ccsdk-sli-adaptors :: netbox-client :: ${project.artifactId}</name> |
| 33 | |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 34 | <properties> |
Timoney, Dan (dt5972) | f2e0976 | 2019-11-19 13:12:27 -0500 | [diff] [blame] | 35 | <ccsdk.sli.core.version>${project.version}</ccsdk.sli.core.version> |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 36 | <ccsdk.sli.adaptors.version>${project.version}</ccsdk.sli.adaptors.version> |
| 37 | </properties> |
| 38 | |
Timoney, Dan (dt5972) | f200a72 | 2019-01-03 16:24:22 -0500 | [diff] [blame] | 39 | <dependencyManagement> |
| 40 | <dependencies> |
| 41 | <dependency> |
Dan Timoney | a612cdd | 2020-03-05 11:51:01 -0500 | [diff] [blame^] | 42 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 43 | <artifactId>sli-core-artifacts</artifactId> |
| 44 | <version>${ccsdk.sli.core.version}</version> |
| 45 | <type>pom</type> |
| 46 | <scope>import</scope> |
Timoney, Dan (dt5972) | f200a72 | 2019-01-03 16:24:22 -0500 | [diff] [blame] | 47 | </dependency> |
| 48 | </dependencies> |
| 49 | </dependencyManagement> |
Alexis de Talhouët | d10de42 | 2018-08-15 14:29:07 -0400 | [diff] [blame] | 50 | <dependencies> |
Alexis de Talhouët | e2b2138 | 2018-08-21 11:29:49 -0400 | [diff] [blame] | 51 | |
Alexis de Talhouët | d10de42 | 2018-08-15 14:29:07 -0400 | [diff] [blame] | 52 | <dependency> |
Alexis de Talhouët | d10de42 | 2018-08-15 14:29:07 -0400 | [diff] [blame] | 53 | <groupId>com.google.code.gson</groupId> |
| 54 | <artifactId>gson</artifactId> |
| 55 | <version>${gson.version}</version> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>org.apache.httpcomponents</groupId> |
Alexis de Talhouët | e2b2138 | 2018-08-21 11:29:49 -0400 | [diff] [blame] | 59 | <artifactId>httpcore</artifactId> |
| 60 | <version>${apache.httpcomponents.core.version}</version> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.apache.httpcomponents</groupId> |
| 64 | <artifactId>httpclient</artifactId> |
Alexis de Talhouët | d10de42 | 2018-08-15 14:29:07 -0400 | [diff] [blame] | 65 | <version>${apache.httpcomponents.client.version}</version> |
| 66 | </dependency> |
| 67 | <dependency> |
Alexis de Talhouët | eae6b96 | 2018-08-15 14:30:43 -0400 | [diff] [blame] | 68 | <groupId>org.slf4j</groupId> |
| 69 | <artifactId>slf4j-api</artifactId> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 73 | <artifactId>sli-common</artifactId> |
Agarwal, Ruchira (ra1926) | 83559dd | 2019-11-05 18:16:50 +0000 | [diff] [blame] | 74 | <scope>provided</scope> |
Alexis de Talhouët | eae6b96 | 2018-08-15 14:30:43 -0400 | [diff] [blame] | 75 | </dependency> |
Alexis de Talhouët | 00ea51d | 2018-08-24 08:37:11 -0400 | [diff] [blame] | 76 | <dependency> |
| 77 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 78 | <artifactId>sliPluginUtils-provider</artifactId> |
Dan Timoney | a612cdd | 2020-03-05 11:51:01 -0500 | [diff] [blame^] | 79 | <version>${ccsdk.sli.core.version}</version> |
Agarwal, Ruchira (ra1926) | 83559dd | 2019-11-05 18:16:50 +0000 | [diff] [blame] | 80 | <scope>provided</scope> |
Alexis de Talhouët | 00ea51d | 2018-08-24 08:37:11 -0400 | [diff] [blame] | 81 | </dependency> |
Alexis de Talhouët | ed71625 | 2019-02-09 15:01:10 -0500 | [diff] [blame] | 82 | <dependency> |
| 83 | <groupId>org.osgi</groupId> |
| 84 | <artifactId>org.osgi.core</artifactId> |
| 85 | <scope>provided</scope> |
| 86 | </dependency> |
Alexis de Talhouët | eae6b96 | 2018-08-15 14:30:43 -0400 | [diff] [blame] | 87 | |
| 88 | <!--Testing--> |
| 89 | <dependency> |
| 90 | <groupId>junit</groupId> |
| 91 | <artifactId>junit</artifactId> |
Alexis de Talhouët | eae6b96 | 2018-08-15 14:30:43 -0400 | [diff] [blame] | 92 | <scope>test</scope> |
| 93 | </dependency> |
Timoney, Dan (dt5972) | 793f714 | 2019-06-20 19:16:28 -0400 | [diff] [blame] | 94 | <!-- Requires mockito v2 --> |
Alexis de Talhouët | eae6b96 | 2018-08-15 14:30:43 -0400 | [diff] [blame] | 95 | <dependency> |
| 96 | <groupId>org.mockito</groupId> |
| 97 | <artifactId>mockito-core</artifactId> |
| 98 | <version>2.2.11</version> |
| 99 | <scope>test</scope> |
| 100 | </dependency> |
| 101 | <dependency> |
| 102 | <groupId>com.github.tomakehurst</groupId> |
| 103 | <artifactId>wiremock</artifactId> |
Dan Timoney | a612cdd | 2020-03-05 11:51:01 -0500 | [diff] [blame^] | 104 | <version>2.23.2</version> |
Alexis de Talhouët | eae6b96 | 2018-08-15 14:30:43 -0400 | [diff] [blame] | 105 | <scope>test</scope> |
| 106 | </dependency> |
| 107 | <dependency> |
| 108 | <groupId>org.eclipse.jetty</groupId> |
| 109 | <artifactId>jetty-server</artifactId> |
Alexis de Talhouët | eae6b96 | 2018-08-15 14:30:43 -0400 | [diff] [blame] | 110 | <scope>test</scope> |
| 111 | </dependency> |
| 112 | <dependency> |
| 113 | <groupId>ch.qos.logback</groupId> |
| 114 | <artifactId>logback-classic</artifactId> |
Alexis de Talhouët | eae6b96 | 2018-08-15 14:30:43 -0400 | [diff] [blame] | 115 | <scope>test</scope> |
| 116 | </dependency> |
Alexis de Talhouët | d10de42 | 2018-08-15 14:29:07 -0400 | [diff] [blame] | 117 | </dependencies> |
| 118 | |
| 119 | <build> |
| 120 | <plugins> |
| 121 | <plugin> |
| 122 | <groupId>org.apache.felix</groupId> |
| 123 | <artifactId>maven-bundle-plugin</artifactId> |
| 124 | <extensions>true</extensions> |
| 125 | <configuration> |
| 126 | <instructions> |
| 127 | <Export-Package> |
Alexis de Talhouët | eae6b96 | 2018-08-15 14:30:43 -0400 | [diff] [blame] | 128 | org.onap.ccsdk.sli.adaptors.netbox.api, |
Alexis de Talhouët | d10de42 | 2018-08-15 14:29:07 -0400 | [diff] [blame] | 129 | org.onap.ccsdk.sli.adaptors.netbox.ipam, |
Alexis de Talhouët | eae6b96 | 2018-08-15 14:30:43 -0400 | [diff] [blame] | 130 | org.onap.ccsdk.sli.adaptors.netbox.model |
Alexis de Talhouët | d10de42 | 2018-08-15 14:29:07 -0400 | [diff] [blame] | 131 | </Export-Package> |
| 132 | </instructions> |
| 133 | </configuration> |
| 134 | </plugin> |
| 135 | </plugins> |
| 136 | </build> |
Alexis de Talhouët | d10de42 | 2018-08-15 14:29:07 -0400 | [diff] [blame] | 137 | </project> |