blob: bb9a1efdabe2e024b6c3097b09ad71a44d6fb928 [file] [log] [blame]
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
Patrick Brady10bba352017-07-19 12:09:28 -07004 ONAP : APPC
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -04005 ================================================================================
Takabbda29c2018-02-11 19:29:18 -05006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -04007 ================================================================================
Patrick Brady10bba352017-07-19 12:09:28 -07008 Copyright (C) 2017 Amdocs
9 =============================================================================
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -040010 Licensed under the Apache License, Version 2.0 (the "License");
11 you may not use this file except in compliance with the License.
12 You may obtain a copy of the License at
13
14 http://www.apache.org/licenses/LICENSE-2.0
15
16 Unless required by applicable law or agreed to in writing, software
17 distributed under the License is distributed on an "AS IS" BASIS,
18 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 See the License for the specific language governing permissions and
20 limitations under the License.
Patrick Brady10bba352017-07-19 12:09:28 -070021
Patrick Brady10bba352017-07-19 12:09:28 -070022 ============LICENSE_END=========================================================
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -040023 -->
24<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">
Takabbda29c2018-02-11 19:29:18 -050025 <modelVersion>4.0.0</modelVersion>
Patrick Bradyd3ef5472018-08-10 15:14:38 -070026 <parent>
27 <groupId>org.onap.appc.parent</groupId>
28 <artifactId>binding-parent</artifactId>
29 <version>1.4.0-SNAPSHOT</version>
30 <relativePath />
31 </parent>
32 <groupId>org.onap.appc</groupId>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -040033
Takabbda29c2018-02-11 19:29:18 -050034 <artifactId>appc-ansible-adapter-bundle</artifactId>
35 <packaging>bundle</packaging>
36 <name>APPC Ansible Service Adapter - bundle</name>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -040037
Takabbda29c2018-02-11 19:29:18 -050038 <dependencies>
39 <dependency>
40 <groupId>commons-codec</groupId>
41 <artifactId>commons-codec</artifactId>
42 <version>1.9</version>
43 </dependency>
44 <dependency>
45 <groupId>commons-logging</groupId>
46 <artifactId>commons-logging</artifactId>
47 <version>1.2</version>
48 </dependency>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -040049
Takabbda29c2018-02-11 19:29:18 -050050 <dependency>
51 <groupId>org.apache.httpcomponents</groupId>
52 <artifactId>httpclient</artifactId>
Taka Choe5d914e2018-03-05 21:01:48 -050053 <version>4.5.3</version>
Takabbda29c2018-02-11 19:29:18 -050054 </dependency>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -040055
Takabbda29c2018-02-11 19:29:18 -050056 <!-- http://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
57 <dependency>
58 <groupId>org.onap.appc</groupId>
Patrick Bradyd3ef5472018-08-10 15:14:38 -070059 <artifactId>appc-common-bundle</artifactId>
Takabbda29c2018-02-11 19:29:18 -050060 <version>${project.version}</version>
61 </dependency>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -040062
Takabbda29c2018-02-11 19:29:18 -050063 <dependency>
64 <groupId>javax</groupId>
65 <artifactId>javaee-api</artifactId>
66 <version>7.0</version>
67 </dependency>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -040068
Takabbda29c2018-02-11 19:29:18 -050069 <!--
70 ### DEPENDENCIES NOT REQUIRED
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -040071
72 <dependency>
Takabbda29c2018-02-11 19:29:18 -050073 <groupId>jce</groupId>
74 <artifactId>jce</artifactId>
75 <version>1_2-do</version>
76 <scope>compile</scope>
77 </dependency>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -040078
79
Takabbda29c2018-02-11 19:29:18 -050080 <dependency>
81 <groupId>javax.ws.rs</groupId>
82 <artifactId>javax.ws.rs-api</artifactId>
83 <version>2.0</version>
84 </dependency>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -040085
Takabbda29c2018-02-11 19:29:18 -050086 <groupId>javax.xml.bind</groupId>
87 <artifactId>jaxb-api</artifactId>
88 <version>2.2.3</version>
89 </dependency>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -040090
Takabbda29c2018-02-11 19:29:18 -050091 <dependency>
92 <groupId>javax.xml</groupId>
93 <artifactId>jaxp-api</artifactId>
94 <version>1.4.2</version>
95 </dependency>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -040096
Takabbda29c2018-02-11 19:29:18 -050097 #########
98 -->
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -040099
Takabbda29c2018-02-11 19:29:18 -0500100 <!-- Needed to run test cases -->
101 <dependency>
102 <groupId>org.glassfish.jersey.core</groupId>
103 <artifactId>jersey-common</artifactId>
104 <version>2.9.1</version>
105 </dependency>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -0400106
Takabbda29c2018-02-11 19:29:18 -0500107 <dependency>
108 <groupId>org.codehaus.jackson</groupId>
109 <artifactId>jackson-jaxrs</artifactId>
Taka Cho65d7a302018-03-01 20:57:52 -0500110 <version>1.9.13</version>
Takabbda29c2018-02-11 19:29:18 -0500111 </dependency>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -0400112
Takabbda29c2018-02-11 19:29:18 -0500113 <dependency>
114 <groupId>junit</groupId>
115 <artifactId>junit</artifactId>
116 <scope>test</scope>
117 </dependency>
118 <dependency>
119 <groupId>org.mockito</groupId>
120 <artifactId>mockito-core</artifactId>
121 </dependency>
122 <dependency>
123 <groupId>org.onap.ccsdk.sli.core</groupId>
124 <artifactId>sli-common</artifactId>
125 <scope>compile</scope>
126 <!-- Added exclusion to prevent missing dependency issue on dblib -->
127 <exclusions>
128 <exclusion>
129 <groupId>org.onap.ccsdk.sli.core</groupId>
130 <artifactId>dblib-provider</artifactId>
131 </exclusion>
132 </exclusions>
133 </dependency>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -0400134
Takabbda29c2018-02-11 19:29:18 -0500135 <dependency>
136 <groupId>org.onap.ccsdk.sli.core</groupId>
137 <artifactId>sli-provider</artifactId>
138 <scope>compile</scope>
139 <!-- Added exclusion to prevent missing dependency issue on dblib -->
140 <exclusions>
141 <exclusion>
142 <groupId>org.onap.ccsdk.sli.core</groupId>
143 <artifactId>dblib-provider</artifactId>
144 </exclusion>
145 </exclusions>
146 </dependency>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -0400147
Takabbda29c2018-02-11 19:29:18 -0500148 <dependency>
149 <groupId>equinoxSDK381</groupId>
150 <artifactId>org.eclipse.osgi</artifactId>
151 </dependency>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -0400152
Takabbda29c2018-02-11 19:29:18 -0500153 <dependency>
154 <groupId>org.slf4j</groupId>
155 <artifactId>slf4j-api</artifactId>
156 </dependency>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -0400157
Takabbda29c2018-02-11 19:29:18 -0500158 <dependency>
159 <groupId>org.slf4j</groupId>
160 <artifactId>jcl-over-slf4j</artifactId>
161 </dependency>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -0400162
Takabbda29c2018-02-11 19:29:18 -0500163 <dependency>
164 <groupId>org.mariadb.jdbc</groupId>
165 <artifactId>mariadb-java-client</artifactId>
166 </dependency>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -0400167
Takabbda29c2018-02-11 19:29:18 -0500168 <dependency>
169 <groupId>org.json</groupId>
170 <artifactId>json</artifactId>
171 <version>20160212</version>
172 </dependency>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -0400173
174
175 <dependency>
Takabbda29c2018-02-11 19:29:18 -0500176 <groupId>com.google.guava</groupId>
177 <artifactId>guava</artifactId>
Takabbda29c2018-02-11 19:29:18 -0500178 </dependency>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -0400179
180 <!--
181 <dependency>
Takabbda29c2018-02-11 19:29:18 -0500182 <groupId>com.google.code.gson</groupId>
183 <artifactId>gson</artifactId>
184 <version>2.8.0</version>
185 </dependency>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -0400186 -->
187
Takabbda29c2018-02-11 19:29:18 -0500188 </dependencies>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -0400189
190
Takabbda29c2018-02-11 19:29:18 -0500191 <build>
192 <plugins>
193 <plugin>
194 <groupId>org.apache.felix</groupId>
195 <artifactId>maven-bundle-plugin</artifactId>
196 <extensions>true</extensions>
197 <configuration>
198 <instructions>
199 <Bundle-SymbolicName>appc-ansible-adapter</Bundle-SymbolicName>
200 <Bundle-Activator>org.onap.appc.adapter.ansible.AnsibleActivator</Bundle-Activator>
201 <Export-Package>org.onap.appc.adapter.ansible</Export-Package>
202 <Import-Package>org.onap.ccsdk.sli.core.sli.*,org.osgi.framework.*,org.slf4j.*, javax.net.*,javax.net.ssl.*,org.xml.sax.*,javax.xml.bind.*,javax.naming.*, javax.security.*</Import-Package>
203 <Embed-Dependency>*;scope=compile|runtime;artifactId=!sli-common|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|mariadb-java-client|xml-apis</Embed-Dependency>
204 <Embed-Transitive>true</Embed-Transitive>
205 </instructions>
206 </configuration>
207 </plugin>
208 </plugins>
209 </build>
Patrick Brady769d3452018-09-24 13:09:27 -0700210 <version>1.4.0-SNAPSHOT</version>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -0400211</project>