blob: bb29f912f919485dcc4c3398922825b258bd1403 [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 ================================================================================
6 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
7 ================================================================================
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 ECOMP is a trademark and service mark of AT&T Intellectual Property.
23 ============LICENSE_END=========================================================
24 -->
25<project xmlns="http://maven.apache.org/POM/4.0.0"
26 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
27 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
28 <modelVersion>4.0.0</modelVersion>
29 <parent>
30 <groupId>org.openecomp.appc</groupId>
31 <artifactId>appc-chef-adapter</artifactId>
32 <version>1.1.0-SNAPSHOT</version>
33 </parent>
Patrick Brady57b5eef2017-02-10 15:00:49 -080034
Skip Wonnell8c9631e2017-08-29 14:16:20 -050035 <artifactId>appc-chef-adapter-bundle</artifactId>
36 <packaging>bundle</packaging>
37 <name>APPC Chef Adapter - Bundle</name>
Patrick Brady57b5eef2017-02-10 15:00:49 -080038
Skip Wonnell8c9631e2017-08-29 14:16:20 -050039 <properties>
40 <licenseDir>${project.parent.parent.parent.basedir}</licenseDir>
41 </properties>
Patrick Brady57b5eef2017-02-10 15:00:49 -080042
Skip Wonnell8c9631e2017-08-29 14:16:20 -050043 <dependencies>
44 <dependency>
45 <groupId>org.json</groupId>
46 <artifactId>json</artifactId>
47 <version>20160810</version>
48 </dependency>
49 <dependency>
50 <groupId>commons-codec</groupId>
51 <artifactId>commons-codec</artifactId>
52 </dependency>
53 <dependency>
54 <groupId>commons-logging</groupId>
55 <artifactId>commons-logging</artifactId>
56 <version>1.2</version>
57 </dependency>
58 <dependency>
59 <groupId>org.apache.httpcomponents</groupId>
60 <artifactId>httpcore</artifactId>
Marcus G K Williamsc2f55b22017-09-07 17:16:09 -070061 <version>4.4.6</version>
Skip Wonnell8c9631e2017-08-29 14:16:20 -050062 </dependency>
Marcus G K Williamsc2f55b22017-09-07 17:16:09 -070063 <dependency>
64 <groupId>org.apache.httpcomponents</groupId>
65 <artifactId>httpclient</artifactId>
66 <version>4.5.3</version>
67 </dependency>
68
Patrick Brady38713202017-07-28 11:29:23 -070069
Skip Wonnell8c9631e2017-08-29 14:16:20 -050070 <dependency>
71 <groupId>org.bouncycastle</groupId>
72 <artifactId>bcpkix-jdk15on</artifactId>
73 <version>1.55</version>
74 </dependency>
75 <dependency>
76 <groupId>org.bouncycastle</groupId>
77 <artifactId>bcprov-jdk15on</artifactId>
78 <version>1.55</version>
79 </dependency>
80 <dependency>
81 <groupId>org.openecomp.appc</groupId>
82 <artifactId>appc-common</artifactId>
83 <version>${project.version}</version>
84 </dependency>
85 <dependency>
86 <groupId>javax</groupId>
87 <artifactId>javaee-api</artifactId>
88 <version>7.0</version>
89 </dependency>
Patrick Brady38713202017-07-28 11:29:23 -070090
Skip Wonnell8c9631e2017-08-29 14:16:20 -050091 <dependency>
92 <groupId>com.att.cdp</groupId>
93 <artifactId>cdp-pal-common</artifactId>
94 <scope>compile</scope>
95 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -080096
Skip Wonnell8c9631e2017-08-29 14:16:20 -050097 <dependency>
98 <groupId>com.att.cdp</groupId>
99 <artifactId>cdp-pal-openstack</artifactId>
100 <scope>compile</scope>
101 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800102
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500103 <dependency>
104 <groupId>javax.ws.rs</groupId>
105 <artifactId>javax.ws.rs-api</artifactId>
106 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800107
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500108 <!-- Jersey support needed for OpenStack connector and API version logic -->
109 <dependency>
110 <groupId>com.sun.jersey</groupId>
111 <artifactId>jersey-client</artifactId>
112 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800113
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500114 <dependency>
115 <groupId>com.sun.jersey</groupId>
116 <artifactId>jersey-json</artifactId>
117 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800118
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500119 <dependency>
120 <groupId>javax.xml.bind</groupId>
121 <artifactId>jaxb-api</artifactId>
122 <version>2.1</version>
123 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800124
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500125 <dependency>
126 <groupId>javax.xml</groupId>
127 <artifactId>jaxp-api</artifactId>
128 <version>1.4.2</version>
129 </dependency>
root99d63bf2017-07-13 09:43:35 -0400130
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500131 <!-- Needed to run test cases -->
132 <dependency>
133 <groupId>org.glassfish.jersey.core</groupId>
134 <artifactId>jersey-common</artifactId>
135 <version>2.9.1</version>
136 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800137
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500138 <dependency>
139 <groupId>org.codehaus.jackson</groupId>
140 <artifactId>jackson-jaxrs</artifactId>
141 <version>1.9.12</version>
142 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800143
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500144 <dependency>
145 <groupId>org.apache.httpcomponents</groupId>
146 <artifactId>httpclient</artifactId>
147 <version>4.5.1</version>
148 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800149
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500150 <dependency>
151 <groupId>junit</groupId>
152 <artifactId>junit</artifactId>
153 <scope>test</scope>
154 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800155
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500156 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700157 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500158 <artifactId>sli-common</artifactId>
159 <scope>compile</scope>
160 <!-- Added exclusion to prevent missing dependency issue on dblib -->
161 <exclusions>
162 <exclusion>
Patrick Brady76706002017-09-04 21:37:25 -0700163 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500164 <artifactId>dblib-provider</artifactId>
165 </exclusion>
166 </exclusions>
167 </dependency>
168
169 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700170 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500171 <artifactId>sli-provider</artifactId>
172 <scope>compile</scope>
173 <!-- Added exclusion to prevent missing dependency issue on dblib -->
174 <exclusions>
175 <exclusion>
Patrick Brady76706002017-09-04 21:37:25 -0700176 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500177 <artifactId>dblib-provider</artifactId>
178 </exclusion>
179 </exclusions>
180 </dependency>
181
182 <dependency>
183 <groupId>equinoxSDK381</groupId>
184 <artifactId>org.eclipse.osgi</artifactId>
185 </dependency>
186
187 <dependency>
188 <groupId>org.slf4j</groupId>
189 <artifactId>slf4j-api</artifactId>
190 </dependency>
191
192 <dependency>
193 <groupId>org.slf4j</groupId>
194 <artifactId>jcl-over-slf4j</artifactId>
195 </dependency>
196
197 <dependency>
Patrick Bradyac62a4a2017-09-13 00:11:21 -0700198 <groupId>org.mariadb.jdbc</groupId>
199 <artifactId>mariadb-java-client</artifactId>
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500200 </dependency>
201
202 <dependency>
203 <groupId>com.vmware</groupId>
204 <artifactId>vijava</artifactId>
205 <version>5.1</version>
206 <scope>compile</scope>
207 </dependency>
208
209 <dependency>
210 <groupId>xerces</groupId>
211 <artifactId>xerces</artifactId>
212 <version>2.4.0</version>
213 <scope>provided</scope>
214 </dependency>
215
216 </dependencies>
217
218 <build>
219 <plugins>
220 <plugin>
221 <groupId>org.apache.felix</groupId>
222 <artifactId>maven-bundle-plugin</artifactId>
223 <extensions>true</extensions>
224 <configuration>
225 <instructions>
226 <Bundle-SymbolicName>appc-chef-adapter</Bundle-SymbolicName>
227 <Bundle-Activator>org.openecomp.appc.adapter.chef.ChefActivator</Bundle-Activator>
228 <Export-Package>org.openecomp.appc.adapter.chef</Export-Package>
229 <Import-Package>
Patrick Brady66384fa2017-09-10 20:12:40 -0700230 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.*
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500231 </Import-Package>
232 <Embed-Dependency>
Patrick Bradyac62a4a2017-09-13 00:11:21 -0700233 *;scope=compile|runtime;artifactId=!sli-common|!appc-common|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|mariadb-java-client|xml-apis
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500234 </Embed-Dependency>
235 <Embed-Transitive>true</Embed-Transitive>
236 </instructions>
237
238 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
239 </configuration>
240 </plugin>
241 </plugins>
242 </build>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800243</project>