upgrade databind artifact
[appc.git] / appc-adapters / appc-chef-adapter / appc-chef-adapter-bundle / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017-2018 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
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.
21
22   ============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>
29         <groupId>org.onap.appc.parent</groupId>
30         <artifactId>binding-parent</artifactId>
31         <version>1.5.0-SNAPSHOT</version>
32         <relativePath />
33     </parent>
34
35     <artifactId>appc-chef-adapter-bundle</artifactId>
36     <groupId>org.onap.appc</groupId>
37     <version>1.5.0-SNAPSHOT</version>
38     <packaging>bundle</packaging>
39     <name>APPC Chef Adapter - Bundle</name>
40
41     <properties>
42         <licenseDir>${project.parent.parent.parent.basedir}</licenseDir>
43     </properties>
44
45     <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>
63             <version>4.4.6</version>
64         </dependency>
65         <dependency>
66             <groupId>org.apache.httpcomponents</groupId>
67             <artifactId>httpclient</artifactId>
68             <version>4.5.3</version>
69         </dependency>
70
71
72         <dependency>
73             <groupId>org.bouncycastle</groupId>
74             <artifactId>bcpkix-jdk15on</artifactId>
75             <version>1.60</version>
76         </dependency>
77         <dependency>
78             <groupId>org.bouncycastle</groupId>
79             <artifactId>bcprov-jdk15on</artifactId>
80             <version>1.60</version>
81         </dependency>
82         <dependency>
83             <groupId>org.onap.appc</groupId>
84             <artifactId>appc-common-bundle</artifactId>
85             <version>${project.version}</version>
86             <exclusions>
87               <exclusion>
88                 <groupId>com.fasterxml.jackson.core</groupId>
89                 <artifactId>jackson-databind</artifactId>
90               </exclusion>
91            </exclusions>
92         </dependency>
93
94         <dependency>
95           <groupId>com.fasterxml.jackson.core</groupId>
96           <artifactId>jackson-databind</artifactId>
97           <version>2.8.11.3</version>
98         </dependency>
99
100         <dependency>
101             <groupId>javax</groupId>
102             <artifactId>javaee-api</artifactId>
103             <version>7.0</version>
104         </dependency>
105
106         <dependency>
107             <groupId>com.att.cdp</groupId>
108             <artifactId>cdp-pal-common</artifactId>
109             <version>${cdp.pal.version}</version>
110             <scope>compile</scope>
111             <exclusions>
112                 <exclusion>
113                   <groupId>ch.qos.logback</groupId>
114                   <artifactId>logback-classic</artifactId>
115                 </exclusion>
116             </exclusions>
117         </dependency>
118
119         <dependency>
120             <groupId>com.att.cdp</groupId>
121             <artifactId>cdp-pal-openstack</artifactId>
122             <scope>compile</scope>
123             <version>${cdp.pal.version}</version>
124             <exclusions>
125                   <exclusion>
126                        <groupId>com.att.cdp</groupId>
127                        <artifactId>cdp-pal-common</artifactId>
128                   </exclusion>
129             </exclusions>
130         </dependency>
131
132         <dependency>
133             <groupId>javax.ws.rs</groupId>
134             <artifactId>javax.ws.rs-api</artifactId>
135         </dependency>
136
137         <!-- Jersey support needed for OpenStack connector and API version logic -->
138         <dependency>
139             <groupId>com.sun.jersey</groupId>
140             <artifactId>jersey-client</artifactId>
141         </dependency>
142
143         <dependency>
144             <groupId>com.sun.jersey</groupId>
145             <artifactId>jersey-json</artifactId>
146             <exclusions>
147                  <exclusion>
148                        <groupId>org.codehaus.jackson</groupId>
149                        <artifactId>jackson-mapper-asl</artifactId>
150                  </exclusion>
151             </exclusions>
152         </dependency>
153         <dependency>
154             <groupId>org.codehaus.jackson</groupId>
155             <artifactId>jackson-mapper-asl</artifactId>
156             <version>1.9.3</version>
157         </dependency>
158
159         <dependency>
160             <groupId>javax.xml.bind</groupId>
161             <artifactId>jaxb-api</artifactId>
162             <version>2.2.3</version>
163         </dependency>
164
165         <dependency>
166             <groupId>javax.xml</groupId>
167             <artifactId>jaxp-api</artifactId>
168             <version>1.4.2</version>
169         </dependency>
170
171         <!-- Needed to run test cases -->
172         <dependency>
173             <groupId>org.glassfish.jersey.core</groupId>
174             <artifactId>jersey-common</artifactId>
175             <version>2.9.1</version>
176         </dependency>
177
178         <dependency>
179             <groupId>org.codehaus.jackson</groupId>
180             <artifactId>jackson-jaxrs</artifactId>
181             <version>1.9.13</version>
182         </dependency>
183
184         <dependency>
185             <groupId>org.apache.httpcomponents</groupId>
186             <artifactId>httpclient</artifactId>
187             <version>4.5.3</version>
188         </dependency>
189
190         <dependency>
191             <groupId>junit</groupId>
192             <artifactId>junit</artifactId>
193             <scope>test</scope>
194         </dependency>
195         <dependency>
196             <groupId>org.mockito</groupId>
197             <artifactId>mockito-core</artifactId>
198         </dependency>
199         <dependency>
200             <groupId>org.assertj</groupId>
201             <artifactId>assertj-core</artifactId>
202             <version>${assertj.version}</version>
203         </dependency>
204
205         <dependency>
206             <groupId>org.onap.ccsdk.sli.core</groupId>
207             <artifactId>sli-common</artifactId>
208             <scope>compile</scope>
209             <!-- Added exclusion to prevent missing dependency issue on dblib -->
210             <exclusions>
211                 <exclusion>
212                     <groupId>org.onap.ccsdk.sli.core</groupId>
213                     <artifactId>dblib-provider</artifactId>
214                 </exclusion>
215             </exclusions>
216         </dependency>
217
218         <dependency>
219             <groupId>org.onap.ccsdk.sli.core</groupId>
220             <artifactId>sli-provider</artifactId>
221             <scope>compile</scope>
222             <!-- Added exclusion to prevent missing dependency issue on dblib -->
223             <exclusions>
224                 <exclusion>
225                     <groupId>org.onap.ccsdk.sli.core</groupId>
226                     <artifactId>dblib-provider</artifactId>
227                 </exclusion>
228             </exclusions>
229         </dependency>
230
231         <dependency>
232             <groupId>equinoxSDK381</groupId>
233             <artifactId>org.eclipse.osgi</artifactId>
234             <version>${equinox.osgi.version}</version>
235         </dependency>
236
237         <dependency>
238             <groupId>org.slf4j</groupId>
239             <artifactId>slf4j-api</artifactId>
240         </dependency>
241
242         <dependency>
243             <groupId>org.slf4j</groupId>
244             <artifactId>jcl-over-slf4j</artifactId>
245         </dependency>
246
247         <dependency>
248             <groupId>org.mariadb.jdbc</groupId>
249             <artifactId>mariadb-java-client</artifactId>
250             <version>${mariadb.client.version}</version>
251         </dependency>
252
253         <dependency>
254             <groupId>com.vmware</groupId>
255             <artifactId>vijava</artifactId>
256             <version>5.1</version>
257             <scope>compile</scope>
258         </dependency>
259
260         <dependency>
261             <groupId>xerces</groupId>
262             <artifactId>xerces</artifactId>
263             <version>2.4.0</version>
264             <scope>provided</scope>
265         </dependency>
266
267     </dependencies>
268
269     <build>
270         <plugins>
271             <plugin>
272                 <groupId>org.apache.felix</groupId>
273                 <artifactId>maven-bundle-plugin</artifactId>
274                 <extensions>true</extensions>
275                 <configuration>
276                     <instructions>
277                         <Bundle-SymbolicName>appc-chef-adapter</Bundle-SymbolicName>
278                         <Bundle-Activator>org.onap.appc.adapter.chef.ChefActivator</Bundle-Activator>
279                         <Export-Package>org.onap.appc.adapter.chef</Export-Package>
280                         <Import-Package>
281                             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.*
282                         </Import-Package>
283                         <Embed-Dependency>
284                             *;scope=compile|runtime;artifactId=!sli-common|!appc-common-bundle|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|mariadb-java-client|xml-apis
285                         </Embed-Dependency>
286                         <Embed-Transitive>true</Embed-Transitive>
287                     </instructions>
288
289                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
290                 </configuration>
291             </plugin>
292         </plugins>
293     </build>
294 </project>