blob: 816f84cccfb6e2c238ced4053e3b18b0190c5da8 [file] [log] [blame]
Patrick Brady57b5eef2017-02-10 15:00:49 -08001<?xml version="1.0" encoding="UTF-8"?>
Skip Wonnell8c9631e2017-08-29 14:16:20 -05002<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
John McClungf6332bd2018-06-13 13:07:38 -04006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Skip Wonnell8c9631e2017-08-29 14:16:20 -05007 ================================================================================
8 Copyright (C) 2017 Amdocs
9 =============================================================================
10 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
Patrick Brady57b5eef2017-02-10 15:00:49 -080013
Skip Wonnell8c9631e2017-08-29 14:16:20 -050014 http://www.apache.org/licenses/LICENSE-2.0
Patrick Brady57b5eef2017-02-10 15:00:49 -080015
Skip Wonnell8c9631e2017-08-29 14:16:20 -050016 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 Brady57b5eef2017-02-10 15:00:49 -080021
Skip Wonnell8c9631e2017-08-29 14:16:20 -050022 ============LICENSE_END=========================================================
23 -->
24<project xmlns="http://maven.apache.org/POM/4.0.0"
25 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
27 <modelVersion>4.0.0</modelVersion>
28 <parent>
Patrick Brady7f383f92018-07-30 14:35:31 -070029 <groupId>org.onap.appc.parent</groupId>
30 <artifactId>binding-parent</artifactId>
Patrick Brady99cdab22019-01-07 08:41:15 -080031 <version>1.4.1</version>
Patrick Brady7f383f92018-07-30 14:35:31 -070032 <relativePath />
Skip Wonnell8c9631e2017-08-29 14:16:20 -050033 </parent>
Patrick Brady57b5eef2017-02-10 15:00:49 -080034
Skip Wonnell8c9631e2017-08-29 14:16:20 -050035 <artifactId>appc-chef-adapter-bundle</artifactId>
Patrick Brady7f383f92018-07-30 14:35:31 -070036 <groupId>org.onap.appc</groupId>
Patrick Bradyccd67e92018-11-12 12:14:11 -080037 <version>1.5.0-SNAPSHOT</version>
Skip Wonnell8c9631e2017-08-29 14:16:20 -050038 <packaging>bundle</packaging>
39 <name>APPC Chef Adapter - Bundle</name>
Patrick Brady57b5eef2017-02-10 15:00:49 -080040
Skip Wonnell8c9631e2017-08-29 14:16:20 -050041 <properties>
42 <licenseDir>${project.parent.parent.parent.basedir}</licenseDir>
43 </properties>
Patrick Brady57b5eef2017-02-10 15:00:49 -080044
Skip Wonnell8c9631e2017-08-29 14:16:20 -050045 <dependencies>
46 <dependency>
47 <groupId>org.json</groupId>
48 <artifactId>json</artifactId>
49 <version>20160810</version>
50 </dependency>
51 <dependency>
52 <groupId>commons-codec</groupId>
53 <artifactId>commons-codec</artifactId>
54 </dependency>
55 <dependency>
56 <groupId>commons-logging</groupId>
57 <artifactId>commons-logging</artifactId>
58 <version>1.2</version>
59 </dependency>
60 <dependency>
61 <groupId>org.apache.httpcomponents</groupId>
62 <artifactId>httpcore</artifactId>
Marcus G K Williamsc2f55b22017-09-07 17:16:09 -070063 <version>4.4.6</version>
Skip Wonnell8c9631e2017-08-29 14:16:20 -050064 </dependency>
Marcus G K Williamsc2f55b22017-09-07 17:16:09 -070065 <dependency>
66 <groupId>org.apache.httpcomponents</groupId>
67 <artifactId>httpclient</artifactId>
68 <version>4.5.3</version>
69 </dependency>
70
Patrick Brady38713202017-07-28 11:29:23 -070071
Skip Wonnell8c9631e2017-08-29 14:16:20 -050072 <dependency>
73 <groupId>org.bouncycastle</groupId>
74 <artifactId>bcpkix-jdk15on</artifactId>
Taka Cho261bd4b2018-08-16 21:42:10 -040075 <version>1.60</version>
Skip Wonnell8c9631e2017-08-29 14:16:20 -050076 </dependency>
77 <dependency>
78 <groupId>org.bouncycastle</groupId>
79 <artifactId>bcprov-jdk15on</artifactId>
Taka Cho261bd4b2018-08-16 21:42:10 -040080 <version>1.60</version>
Skip Wonnell8c9631e2017-08-29 14:16:20 -050081 </dependency>
82 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080083 <groupId>org.onap.appc</groupId>
Patrick Brady7f383f92018-07-30 14:35:31 -070084 <artifactId>appc-common-bundle</artifactId>
Skip Wonnell8c9631e2017-08-29 14:16:20 -050085 <version>${project.version}</version>
86 </dependency>
87 <dependency>
88 <groupId>javax</groupId>
89 <artifactId>javaee-api</artifactId>
90 <version>7.0</version>
91 </dependency>
Patrick Brady38713202017-07-28 11:29:23 -070092
Skip Wonnell8c9631e2017-08-29 14:16:20 -050093 <dependency>
94 <groupId>com.att.cdp</groupId>
95 <artifactId>cdp-pal-common</artifactId>
Patrick Brady57e92722018-08-21 23:23:03 -070096 <version>${cdp.pal.version}</version>
Patrick Brady28da5022018-09-17 12:52:55 -070097 <scope>compile</scope>
98 <exclusions>
99 <exclusion>
100 <groupId>ch.qos.logback</groupId>
101 <artifactId>logback-classic</artifactId>
102 </exclusion>
103 </exclusions>
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500104 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800105
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500106 <dependency>
107 <groupId>com.att.cdp</groupId>
108 <artifactId>cdp-pal-openstack</artifactId>
109 <scope>compile</scope>
Patrick Brady7f383f92018-07-30 14:35:31 -0700110 <version>${cdp.pal.version}</version>
Patrick Brady28da5022018-09-17 12:52:55 -0700111 <exclusions>
112 <exclusion>
113 <groupId>com.att.cdp</groupId>
114 <artifactId>cdp-pal-common</artifactId>
115 </exclusion>
116 </exclusions>
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500117 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800118
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500119 <dependency>
120 <groupId>javax.ws.rs</groupId>
121 <artifactId>javax.ws.rs-api</artifactId>
122 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800123
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500124 <!-- Jersey support needed for OpenStack connector and API version logic -->
125 <dependency>
126 <groupId>com.sun.jersey</groupId>
127 <artifactId>jersey-client</artifactId>
128 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800129
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500130 <dependency>
131 <groupId>com.sun.jersey</groupId>
132 <artifactId>jersey-json</artifactId>
133 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800134
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500135 <dependency>
136 <groupId>javax.xml.bind</groupId>
137 <artifactId>jaxb-api</artifactId>
Taka0f18e352017-12-19 16:25:07 -0500138 <version>2.2.3</version>
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500139 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800140
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500141 <dependency>
142 <groupId>javax.xml</groupId>
143 <artifactId>jaxp-api</artifactId>
144 <version>1.4.2</version>
145 </dependency>
root99d63bf2017-07-13 09:43:35 -0400146
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500147 <!-- Needed to run test cases -->
148 <dependency>
149 <groupId>org.glassfish.jersey.core</groupId>
150 <artifactId>jersey-common</artifactId>
151 <version>2.9.1</version>
152 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800153
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500154 <dependency>
155 <groupId>org.codehaus.jackson</groupId>
156 <artifactId>jackson-jaxrs</artifactId>
Taka Cho65d7a302018-03-01 20:57:52 -0500157 <version>1.9.13</version>
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500158 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800159
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500160 <dependency>
161 <groupId>org.apache.httpcomponents</groupId>
162 <artifactId>httpclient</artifactId>
Taka Chobda76522018-03-07 11:42:59 -0500163 <version>4.5.3</version>
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500164 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800165
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500166 <dependency>
167 <groupId>junit</groupId>
168 <artifactId>junit</artifactId>
169 <scope>test</scope>
170 </dependency>
Michal Kabaj84088302018-02-06 13:54:02 +0100171 <dependency>
172 <groupId>org.mockito</groupId>
173 <artifactId>mockito-core</artifactId>
174 </dependency>
Michal Kabaj4e260892018-02-27 11:27:48 +0100175 <dependency>
176 <groupId>org.assertj</groupId>
177 <artifactId>assertj-core</artifactId>
Patrick Brady7f383f92018-07-30 14:35:31 -0700178 <version>${assertj.version}</version>
Michal Kabaj4e260892018-02-27 11:27:48 +0100179 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800180
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500181 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700182 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500183 <artifactId>sli-common</artifactId>
184 <scope>compile</scope>
185 <!-- Added exclusion to prevent missing dependency issue on dblib -->
186 <exclusions>
187 <exclusion>
Patrick Brady76706002017-09-04 21:37:25 -0700188 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500189 <artifactId>dblib-provider</artifactId>
190 </exclusion>
191 </exclusions>
192 </dependency>
193
194 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700195 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500196 <artifactId>sli-provider</artifactId>
197 <scope>compile</scope>
198 <!-- Added exclusion to prevent missing dependency issue on dblib -->
199 <exclusions>
200 <exclusion>
Patrick Brady76706002017-09-04 21:37:25 -0700201 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500202 <artifactId>dblib-provider</artifactId>
203 </exclusion>
204 </exclusions>
205 </dependency>
206
207 <dependency>
208 <groupId>equinoxSDK381</groupId>
209 <artifactId>org.eclipse.osgi</artifactId>
Patrick Brady7f383f92018-07-30 14:35:31 -0700210 <version>${equinox.osgi.version}</version>
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500211 </dependency>
212
213 <dependency>
214 <groupId>org.slf4j</groupId>
215 <artifactId>slf4j-api</artifactId>
216 </dependency>
217
218 <dependency>
219 <groupId>org.slf4j</groupId>
220 <artifactId>jcl-over-slf4j</artifactId>
221 </dependency>
222
223 <dependency>
Patrick Bradyac62a4a2017-09-13 00:11:21 -0700224 <groupId>org.mariadb.jdbc</groupId>
225 <artifactId>mariadb-java-client</artifactId>
Patrick Brady7f383f92018-07-30 14:35:31 -0700226 <version>${mariadb.client.version}</version>
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500227 </dependency>
228
229 <dependency>
230 <groupId>com.vmware</groupId>
231 <artifactId>vijava</artifactId>
232 <version>5.1</version>
233 <scope>compile</scope>
234 </dependency>
235
236 <dependency>
237 <groupId>xerces</groupId>
238 <artifactId>xerces</artifactId>
239 <version>2.4.0</version>
240 <scope>provided</scope>
241 </dependency>
242
243 </dependencies>
244
245 <build>
246 <plugins>
247 <plugin>
248 <groupId>org.apache.felix</groupId>
249 <artifactId>maven-bundle-plugin</artifactId>
250 <extensions>true</extensions>
251 <configuration>
252 <instructions>
253 <Bundle-SymbolicName>appc-chef-adapter</Bundle-SymbolicName>
Patrick Brady07567592017-12-13 11:09:30 -0800254 <Bundle-Activator>org.onap.appc.adapter.chef.ChefActivator</Bundle-Activator>
255 <Export-Package>org.onap.appc.adapter.chef</Export-Package>
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500256 <Import-Package>
Modaboina, Kusumakumari (km583p)4967bfa2018-06-19 16:05:35 -0400257 org.onap.ccsdk.sli.core.sli.*,org.osgi.framework.*,org.slf4j.*,com.vmware.*,org.apache.xerces.*,javax.net.*,javax.net.ssl.*,org.xml.sax.*,javax.xml.bind.*,javax.naming.*,javax.security.*
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500258 </Import-Package>
259 <Embed-Dependency>
Ryan Young7b632b42018-08-23 13:35:03 -0400260 *;scope=compile|runtime;artifactId=!sli-common|!appc-common-bundle|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|mariadb-java-client|xml-apis
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500261 </Embed-Dependency>
262 <Embed-Transitive>true</Embed-Transitive>
263 </instructions>
264
265 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
266 </configuration>
267 </plugin>
268 </plugins>
269 </build>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800270</project>