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"> |
Alexis de Talhouët | d10de42 | 2018-08-15 14:29:07 -0400 | [diff] [blame] | 18 | |
| 19 | <parent> |
| 20 | <groupId>org.onap.ccsdk.parent</groupId> |
| 21 | <artifactId>binding-parent</artifactId> |
Timoney, Dan (dt5972) | f200a72 | 2019-01-03 16:24:22 -0500 | [diff] [blame] | 22 | <version>1.2.1-SNAPSHOT</version> |
Alexis de Talhouët | d10de42 | 2018-08-15 14:29:07 -0400 | [diff] [blame] | 23 | <relativePath/> |
| 24 | </parent> |
| 25 | |
| 26 | <groupId>org.onap.ccsdk.sli.adaptors</groupId> |
| 27 | <artifactId>netbox-client-provider</artifactId> |
Timoney, Dan (dt5972) | f200a72 | 2019-01-03 16:24:22 -0500 | [diff] [blame] | 28 | <version>0.4.1-SNAPSHOT</version> |
Alexis de Talhouët | d10de42 | 2018-08-15 14:29:07 -0400 | [diff] [blame] | 29 | <packaging>bundle</packaging> |
| 30 | <modelVersion>4.0.0</modelVersion> |
| 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> |
| 35 | <ccsdk.sli.adaptors.version>${project.version}</ccsdk.sli.adaptors.version> |
| 36 | </properties> |
| 37 | |
Timoney, Dan (dt5972) | f200a72 | 2019-01-03 16:24:22 -0500 | [diff] [blame] | 38 | <dependencyManagement> |
| 39 | <dependencies> |
| 40 | <dependency> |
| 41 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 42 | <artifactId>sli-core-artifacts</artifactId> |
| 43 | <version>${ccsdk.sli.core.version}</version> |
| 44 | <type>pom</type> |
| 45 | <scope>import</scope> |
| 46 | </dependency> |
| 47 | </dependencies> |
| 48 | </dependencyManagement> |
| 49 | |
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> |
| 74 | <scope>compile</scope> |
| 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> |
| 79 | <version>${project.version}</version> |
| 80 | <scope>compile</scope> |
| 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> |
| 92 | <version>${junit.version}</version> |
| 93 | <scope>test</scope> |
| 94 | </dependency> |
| 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> |
| 104 | <version>2.7.1</version> |
| 105 | <scope>test</scope> |
| 106 | </dependency> |
| 107 | <dependency> |
| 108 | <groupId>org.eclipse.jetty</groupId> |
| 109 | <artifactId>jetty-server</artifactId> |
| 110 | <version>9.3.1.v20150714</version> |
| 111 | <scope>test</scope> |
| 112 | </dependency> |
| 113 | <dependency> |
| 114 | <groupId>ch.qos.logback</groupId> |
| 115 | <artifactId>logback-classic</artifactId> |
| 116 | <version>1.2.3</version> |
| 117 | <scope>test</scope> |
| 118 | </dependency> |
Alexis de Talhouët | d10de42 | 2018-08-15 14:29:07 -0400 | [diff] [blame] | 119 | </dependencies> |
| 120 | |
| 121 | <build> |
| 122 | <plugins> |
| 123 | <plugin> |
| 124 | <groupId>org.apache.felix</groupId> |
| 125 | <artifactId>maven-bundle-plugin</artifactId> |
| 126 | <extensions>true</extensions> |
| 127 | <configuration> |
| 128 | <instructions> |
| 129 | <Export-Package> |
Alexis de Talhouët | eae6b96 | 2018-08-15 14:30:43 -0400 | [diff] [blame] | 130 | org.onap.ccsdk.sli.adaptors.netbox.api, |
Alexis de Talhouët | d10de42 | 2018-08-15 14:29:07 -0400 | [diff] [blame] | 131 | org.onap.ccsdk.sli.adaptors.netbox.ipam, |
Alexis de Talhouët | eae6b96 | 2018-08-15 14:30:43 -0400 | [diff] [blame] | 132 | org.onap.ccsdk.sli.adaptors.netbox.model |
Alexis de Talhouët | d10de42 | 2018-08-15 14:29:07 -0400 | [diff] [blame] | 133 | </Export-Package> |
| 134 | </instructions> |
| 135 | </configuration> |
| 136 | </plugin> |
| 137 | </plugins> |
| 138 | </build> |
| 139 | |
| 140 | </project> |