Timoney, Dan (dt5972) | 99fe1a5 | 2018-03-29 12:31:45 -0400 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- ============LICENSE_START======================================================= |
| 3 | ONAP : APPC ================================================================================ |
| 4 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
| 5 | ================================================================================ |
| 6 | Copyright (C) 2017 Amdocs ============================================================================= |
| 7 | Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| 8 | use this file except in compliance with the License. You may obtain a copy |
| 9 | of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required |
| 10 | by applicable law or agreed to in writing, software distributed under the |
| 11 | License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS |
| 12 | OF ANY KIND, either express or implied. See the License for the specific |
| 13 | language governing permissions and limitations under the License. ECOMP is |
| 14 | a trademark and service mark of AT&T Intellectual Property. ============LICENSE_END========================================================= --> |
| 15 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 16 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 17 | <modelVersion>4.0.0</modelVersion> |
| 18 | <parent> |
| 19 | <groupId>org.onap.ccsdk.parent</groupId> |
| 20 | <artifactId>binding-parent</artifactId> |
| 21 | <version>1.0.1-SNAPSHOT</version> |
| 22 | </parent> |
| 23 | |
| 24 | <groupId>org.onap.ccsdk.sli.adaptors</groupId> |
| 25 | <artifactId>ansible-adapter-bundle</artifactId> |
| 26 | <version>0.2.1-SNAPSHOT</version> |
| 27 | <packaging>bundle</packaging> |
| 28 | <name>ccsdk-sli-adaptors :: ansible-adapter :: ${project.artifactId}</name> |
| 29 | |
| 30 | <dependencies> |
| 31 | <dependency> |
| 32 | <groupId>commons-codec</groupId> |
| 33 | <artifactId>commons-codec</artifactId> |
| 34 | </dependency> |
| 35 | <dependency> |
| 36 | <groupId>commons-logging</groupId> |
| 37 | <artifactId>commons-logging</artifactId> |
| 38 | <version>1.2</version> |
| 39 | </dependency> |
| 40 | |
| 41 | <dependency> |
| 42 | <groupId>org.apache.httpcomponents</groupId> |
| 43 | <artifactId>httpclient</artifactId> |
| 44 | <version>${apache.httpcomponents.client.version}</version> |
| 45 | </dependency> |
| 46 | |
| 47 | <!-- http://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore --> |
| 48 | |
| 49 | |
| 50 | <dependency> |
| 51 | <groupId>javax</groupId> |
| 52 | <artifactId>javaee-api</artifactId> |
| 53 | <version>7.0</version> |
| 54 | </dependency> |
| 55 | |
| 56 | |
| 57 | <!-- Needed to run test cases --> |
| 58 | <dependency> |
| 59 | <groupId>org.glassfish.jersey.core</groupId> |
| 60 | <artifactId>jersey-common</artifactId> |
| 61 | <version>2.9.1</version> |
| 62 | </dependency> |
| 63 | |
| 64 | <dependency> |
| 65 | <groupId>org.codehaus.jackson</groupId> |
| 66 | <artifactId>jackson-jaxrs</artifactId> |
| 67 | <version>1.9.13</version> |
| 68 | </dependency> |
| 69 | |
| 70 | <dependency> |
| 71 | <groupId>junit</groupId> |
| 72 | <artifactId>junit</artifactId> |
| 73 | <scope>test</scope> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>org.mockito</groupId> |
| 77 | <artifactId>mockito-core</artifactId> |
| 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 81 | <artifactId>sli-common</artifactId> |
| 82 | </dependency> |
| 83 | |
| 84 | <dependency> |
| 85 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 86 | <artifactId>sli-provider</artifactId> |
| 87 | </dependency> |
| 88 | |
| 89 | <dependency> |
| 90 | <groupId>equinoxSDK381</groupId> |
| 91 | <artifactId>org.eclipse.osgi</artifactId> |
| 92 | </dependency> |
| 93 | |
| 94 | <dependency> |
| 95 | <groupId>org.slf4j</groupId> |
| 96 | <artifactId>slf4j-api</artifactId> |
| 97 | </dependency> |
| 98 | |
| 99 | <dependency> |
| 100 | <groupId>org.slf4j</groupId> |
| 101 | <artifactId>jcl-over-slf4j</artifactId> |
| 102 | </dependency> |
| 103 | |
| 104 | <dependency> |
| 105 | <groupId>org.json</groupId> |
| 106 | <artifactId>json</artifactId> |
| 107 | </dependency> |
| 108 | |
| 109 | |
| 110 | <dependency> |
| 111 | <groupId>com.google.guava</groupId> |
| 112 | <artifactId>guava</artifactId> |
| 113 | </dependency> |
| 114 | |
| 115 | <!-- <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> |
| 116 | <version>2.8.0</version> </dependency> --> |
| 117 | |
| 118 | </dependencies> |
| 119 | |
| 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 | <Bundle-SymbolicName>appc-ansible-adapter</Bundle-SymbolicName> |
| 130 | <Bundle-Activator>org.onap.appc.adapter.ansible.AnsibleActivator</Bundle-Activator> |
| 131 | <Export-Package>org.onap.appc.adapter.ansible</Export-Package> |
| 132 | <Import-Package>org.onap.ccsdk.sli.core.sli.*,org.osgi.framework.*,org.slf4j.*, |
| 133 | javax.net.*,javax.net.ssl.*,org.xml.sax.*,javax.xml.bind.*,javax.naming.*, |
| 134 | javax.security.*</Import-Package> |
| 135 | <Embed-Dependency>*;scope=compile|runtime;artifactId=!sli-common|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|mariadb-java-client|xml-apis</Embed-Dependency> |
| 136 | <Embed-Transitive>true</Embed-Transitive> |
| 137 | </instructions> |
| 138 | </configuration> |
| 139 | </plugin> |
| 140 | </plugins> |
| 141 | </build> --> |
| 142 | </project> |