Release appc
[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>2.6.0-SNAPSHOT</version>
32         <relativePath />
33     </parent>
34
35     <artifactId>appc-chef-adapter-bundle</artifactId>
36     <groupId>org.onap.appc</groupId>
37     <version>1.6.0</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         </dependency>
87         <dependency>
88             <groupId>javax</groupId>
89             <artifactId>javaee-api</artifactId>
90             <version>7.0</version>
91         </dependency>
92
93         <dependency>
94             <groupId>com.att.cdp</groupId>
95             <artifactId>cdp-pal-common</artifactId>
96             <version>${cdp.pal.version}</version>
97             <scope>compile</scope>
98             <exclusions>
99                 <exclusion>
100                   <groupId>ch.qos.logback</groupId>
101                   <artifactId>logback-classic</artifactId>
102                 </exclusion>
103             </exclusions>
104         </dependency>
105
106         <dependency>
107             <groupId>com.att.cdp</groupId>
108             <artifactId>cdp-pal-openstack</artifactId>
109             <scope>compile</scope>
110             <version>${cdp.pal.version}</version>
111             <exclusions>
112                   <exclusion>
113                        <groupId>com.att.cdp</groupId>
114                        <artifactId>cdp-pal-common</artifactId>
115                   </exclusion>
116             </exclusions>
117         </dependency>
118
119         <dependency>
120             <groupId>javax.ws.rs</groupId>
121             <artifactId>javax.ws.rs-api</artifactId>
122         </dependency>
123
124         <!-- 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>
129
130         <dependency>
131             <groupId>com.sun.jersey</groupId>
132             <artifactId>jersey-json</artifactId>
133         </dependency>
134
135         <dependency>
136             <groupId>javax.xml.bind</groupId>
137             <artifactId>jaxb-api</artifactId>
138             <version>2.2.3</version>
139         </dependency>
140
141         <dependency>
142             <groupId>javax.xml</groupId>
143             <artifactId>jaxp-api</artifactId>
144             <version>1.4.2</version>
145         </dependency>
146
147         <!-- 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>
153
154         <dependency>
155             <groupId>org.codehaus.jackson</groupId>
156             <artifactId>jackson-jaxrs</artifactId>
157             <version>1.9.13</version>
158         </dependency>
159
160         <dependency>
161             <groupId>org.apache.httpcomponents</groupId>
162             <artifactId>httpclient</artifactId>
163             <version>4.5.3</version>
164         </dependency>
165
166         <dependency>
167             <groupId>junit</groupId>
168             <artifactId>junit</artifactId>
169             <scope>test</scope>
170         </dependency>
171         <dependency>
172             <groupId>org.mockito</groupId>
173             <artifactId>mockito-core</artifactId>
174         </dependency>
175         <dependency>
176             <groupId>org.assertj</groupId>
177             <artifactId>assertj-core</artifactId>
178             <version>${assertj.version}</version>
179         </dependency>
180
181         <dependency>
182             <groupId>org.onap.ccsdk.sli.core</groupId>
183             <artifactId>sli-common</artifactId>
184             <scope>compile</scope>
185             <!-- Added exclusion to prevent missing dependency issue on dblib -->
186             <exclusions>
187                 <exclusion>
188                     <groupId>org.onap.ccsdk.sli.core</groupId>
189                     <artifactId>dblib-provider</artifactId>
190                 </exclusion>
191             </exclusions>
192         </dependency>
193
194         <dependency>
195             <groupId>org.onap.ccsdk.sli.core</groupId>
196             <artifactId>sli-provider</artifactId>
197             <scope>compile</scope>
198             <!-- Added exclusion to prevent missing dependency issue on dblib -->
199             <exclusions>
200                 <exclusion>
201                     <groupId>org.onap.ccsdk.sli.core</groupId>
202                     <artifactId>dblib-provider</artifactId>
203                 </exclusion>
204             </exclusions>
205         </dependency>
206
207         <dependency>
208             <groupId>equinoxSDK381</groupId>
209             <artifactId>org.eclipse.osgi</artifactId>
210             <version>${equinox.osgi.version}</version>
211         </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>
224             <groupId>org.mariadb.jdbc</groupId>
225             <artifactId>mariadb-java-client</artifactId>
226             <version>${mariadb.client.version}</version>
227         </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>
254                         <Bundle-Activator>org.onap.appc.adapter.chef.ChefActivator</Bundle-Activator>
255                         <Export-Package>org.onap.appc.adapter.chef</Export-Package>
256                         <Import-Package>
257                             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.*
258                         </Import-Package>
259                         <Embed-Dependency>
260                             *;scope=compile|runtime;artifactId=!sli-common|!appc-common-bundle|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|mariadb-java-client|xml-apis
261                         </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>
270 </project>