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 | --> |
| 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> |
| 37 | <dependency> |
| 38 | <groupId>junit</groupId> |
| 39 | <artifactId>junit</artifactId> |
| 40 | <version>${junit.version}</version> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>com.google.code.gson</groupId> |
| 44 | <artifactId>gson</artifactId> |
| 45 | <version>${gson.version}</version> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>org.apache.httpcomponents</groupId> |
| 49 | <artifactId>httpclient-osgi</artifactId> |
| 50 | <version>${apache.httpcomponents.client.version}</version> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.apache.httpcomponents</groupId> |
| 54 | <artifactId>httpasyncclient-osgi</artifactId> |
| 55 | <version>4.1.3</version> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>org.apache.httpcomponents</groupId> |
| 59 | <artifactId>httpcore-osgi</artifactId> |
| 60 | <version>${apache.httpcomponents.core.version}</version> |
| 61 | </dependency> |
| 62 | </dependencies> |
| 63 | |
| 64 | <build> |
| 65 | <plugins> |
| 66 | <plugin> |
| 67 | <groupId>org.apache.felix</groupId> |
| 68 | <artifactId>maven-bundle-plugin</artifactId> |
| 69 | <extensions>true</extensions> |
| 70 | <configuration> |
| 71 | <instructions> |
| 72 | <Export-Package> |
| 73 | org.onap.ccsdk.sli.adaptors.netbox.ipam, |
| 74 | org.onap.ccsdk.sli.adaptors.netbox.model, |
| 75 | org.onap.ccsdk.sli.adaptors.netbox.query |
| 76 | </Export-Package> |
| 77 | </instructions> |
| 78 | </configuration> |
| 79 | </plugin> |
| 80 | </plugins> |
| 81 | </build> |
| 82 | |
| 83 | </project> |