Update license header on appc-adapter xml files
[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</groupId>
30         <artifactId>appc-chef-adapter</artifactId>
31         <version>1.4.0-SNAPSHOT</version>
32     </parent>
33
34     <artifactId>appc-chef-adapter-bundle</artifactId>
35     <packaging>bundle</packaging>
36     <name>APPC Chef Adapter - Bundle</name>
37
38     <properties>
39         <licenseDir>${project.parent.parent.parent.basedir}</licenseDir>
40     </properties>
41
42     <dependencies>
43         <dependency>
44             <groupId>org.json</groupId>
45             <artifactId>json</artifactId>
46             <version>20160810</version>
47         </dependency>
48         <dependency>
49             <groupId>commons-codec</groupId>
50             <artifactId>commons-codec</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>commons-logging</groupId>
54             <artifactId>commons-logging</artifactId>
55             <version>1.2</version>
56         </dependency>
57         <dependency>
58             <groupId>org.apache.httpcomponents</groupId>
59             <artifactId>httpcore</artifactId>
60             <version>4.4.6</version>
61         </dependency>
62         <dependency>
63             <groupId>org.apache.httpcomponents</groupId>
64             <artifactId>httpclient</artifactId>
65             <version>4.5.3</version>
66         </dependency>
67
68
69         <dependency>
70             <groupId>org.bouncycastle</groupId>
71             <artifactId>bcpkix-jdk15on</artifactId>
72             <version>1.56</version>
73         </dependency>
74         <dependency>
75             <groupId>org.bouncycastle</groupId>
76             <artifactId>bcprov-jdk15on</artifactId>
77             <version>1.56</version>
78         </dependency>
79         <dependency>
80             <groupId>org.onap.appc</groupId>
81             <artifactId>appc-common</artifactId>
82             <version>${project.version}</version>
83         </dependency>
84         <dependency>
85             <groupId>javax</groupId>
86             <artifactId>javaee-api</artifactId>
87             <version>7.0</version>
88         </dependency>
89
90         <dependency>
91             <groupId>com.att.cdp</groupId>
92             <artifactId>cdp-pal-common</artifactId>
93             <scope>compile</scope>
94         </dependency>
95
96         <dependency>
97             <groupId>com.att.cdp</groupId>
98             <artifactId>cdp-pal-openstack</artifactId>
99             <scope>compile</scope>
100         </dependency>
101
102         <dependency>
103             <groupId>javax.ws.rs</groupId>
104             <artifactId>javax.ws.rs-api</artifactId>
105         </dependency>
106
107         <!-- Jersey support needed for OpenStack connector and API version logic -->
108         <dependency>
109             <groupId>com.sun.jersey</groupId>
110             <artifactId>jersey-client</artifactId>
111         </dependency>
112
113         <dependency>
114             <groupId>com.sun.jersey</groupId>
115             <artifactId>jersey-json</artifactId>
116         </dependency>
117
118         <dependency>
119             <groupId>javax.xml.bind</groupId>
120             <artifactId>jaxb-api</artifactId>
121             <version>2.2.3</version>
122         </dependency>
123
124         <dependency>
125             <groupId>javax.xml</groupId>
126             <artifactId>jaxp-api</artifactId>
127             <version>1.4.2</version>
128         </dependency>
129
130         <!-- Needed to run test cases -->
131         <dependency>
132             <groupId>org.glassfish.jersey.core</groupId>
133             <artifactId>jersey-common</artifactId>
134             <version>2.9.1</version>
135         </dependency>
136
137         <dependency>
138             <groupId>org.codehaus.jackson</groupId>
139             <artifactId>jackson-jaxrs</artifactId>
140             <version>1.9.13</version>
141         </dependency>
142
143         <dependency>
144             <groupId>org.apache.httpcomponents</groupId>
145             <artifactId>httpclient</artifactId>
146             <version>4.5.3</version>
147         </dependency>
148
149         <dependency>
150             <groupId>junit</groupId>
151             <artifactId>junit</artifactId>
152             <scope>test</scope>
153         </dependency>
154         <dependency>
155             <groupId>org.mockito</groupId>
156             <artifactId>mockito-core</artifactId>
157         </dependency>
158         <dependency>
159             <groupId>org.assertj</groupId>
160             <artifactId>assertj-core</artifactId>
161         </dependency>
162
163         <dependency>
164             <groupId>org.onap.ccsdk.sli.core</groupId>
165             <artifactId>sli-common</artifactId>
166             <scope>compile</scope>
167             <!-- Added exclusion to prevent missing dependency issue on dblib -->
168             <exclusions>
169                 <exclusion>
170                     <groupId>org.onap.ccsdk.sli.core</groupId>
171                     <artifactId>dblib-provider</artifactId>
172                 </exclusion>
173             </exclusions>
174         </dependency>
175
176         <dependency>
177             <groupId>org.onap.ccsdk.sli.core</groupId>
178             <artifactId>sli-provider</artifactId>
179             <scope>compile</scope>
180             <!-- Added exclusion to prevent missing dependency issue on dblib -->
181             <exclusions>
182                 <exclusion>
183                     <groupId>org.onap.ccsdk.sli.core</groupId>
184                     <artifactId>dblib-provider</artifactId>
185                 </exclusion>
186             </exclusions>
187         </dependency>
188
189         <dependency>
190             <groupId>equinoxSDK381</groupId>
191             <artifactId>org.eclipse.osgi</artifactId>
192         </dependency>
193
194         <dependency>
195             <groupId>org.slf4j</groupId>
196             <artifactId>slf4j-api</artifactId>
197         </dependency>
198
199         <dependency>
200             <groupId>org.slf4j</groupId>
201             <artifactId>jcl-over-slf4j</artifactId>
202         </dependency>
203
204         <dependency>
205             <groupId>org.mariadb.jdbc</groupId>
206             <artifactId>mariadb-java-client</artifactId>
207         </dependency>
208
209         <dependency>
210             <groupId>com.vmware</groupId>
211             <artifactId>vijava</artifactId>
212             <version>5.1</version>
213             <scope>compile</scope>
214         </dependency>
215
216         <dependency>
217             <groupId>xerces</groupId>
218             <artifactId>xerces</artifactId>
219             <version>2.4.0</version>
220             <scope>provided</scope>
221         </dependency>
222
223     </dependencies>
224
225     <build>
226         <plugins>
227             <plugin>
228                 <groupId>org.apache.felix</groupId>
229                 <artifactId>maven-bundle-plugin</artifactId>
230                 <extensions>true</extensions>
231                 <configuration>
232                     <instructions>
233                         <Bundle-SymbolicName>appc-chef-adapter</Bundle-SymbolicName>
234                         <Bundle-Activator>org.onap.appc.adapter.chef.ChefActivator</Bundle-Activator>
235                         <Export-Package>org.onap.appc.adapter.chef</Export-Package>
236                         <Import-Package>
237                             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.*
238                         </Import-Package>
239                         <Embed-Dependency>
240                             *;scope=compile|runtime;artifactId=!sli-common|!appc-common|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|mariadb-java-client|xml-apis
241                         </Embed-Dependency>
242                         <Embed-Transitive>true</Embed-Transitive>
243                     </instructions>
244
245                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
246                 </configuration>
247             </plugin>
248         </plugins>
249     </build>
250 </project>