Add missing license text to pom files, part 1
[appc.git] / appc-adapters / appc-rest-healthcheck-adapter / appc-rest-healthcheck-adapter-bundle / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
7   Copyright (C) 2017 Amdocs
8   ================================================================================
9   Licensed under the Apache License, Version 2.0 (the "License");
10   you may not use this file except in compliance with the License.
11   You may obtain a copy of the License at
12   
13        http://www.apache.org/licenses/LICENSE-2.0
14   
15   Unless required by applicable law or agreed to in writing, software
16   distributed under the License is distributed on an "AS IS" BASIS,
17   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18   See the License for the specific language governing permissions and
19   limitations under the License.
20   ============LICENSE_END=========================================================
21   ECOMP is a trademark and service mark of AT&T Intellectual Property.
22   -->
23 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24         <modelVersion>4.0.0</modelVersion>
25         <parent>
26                 <groupId>org.onap.appc</groupId>
27                 <artifactId>appc-rest-healthcheck-adapter</artifactId>
28                 <version>1.3.0-SNAPSHOT</version>
29         </parent>
30
31         <artifactId>appc-rest-healthcheck-adapter-bundle</artifactId>
32         <packaging>bundle</packaging>
33         <name>rest healthcheck Adapter - bundle</name>
34
35         <dependencies>
36                 <dependency>
37                         <groupId>commons-codec</groupId>
38                         <artifactId>commons-codec</artifactId>
39                 </dependency>
40                 <!-- http://mvnrepository.com/artifact/commons-logging/commons-logging -->
41                 <dependency>
42                         <groupId>commons-logging</groupId>
43                         <artifactId>commons-logging</artifactId>
44                         <version>1.2</version>
45                 </dependency>
46                 <!-- http://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
47                 <dependency>
48                         <groupId>org.apache.httpcomponents</groupId>
49                         <artifactId>httpcore</artifactId>
50                         <version>4.4.4</version>
51                 </dependency>
52
53                 <dependency>
54                         <groupId>org.apache.httpcomponents</groupId>
55                         <artifactId>httpclient</artifactId>
56                         <version>4.5.1</version>
57                 </dependency>
58                 <dependency>
59                         <groupId>org.bouncycastle</groupId>
60                         <artifactId>bcpkix-jdk15on</artifactId>
61                         <version>1.47</version>
62                 </dependency>
63                 <dependency>
64                         <groupId>org.bouncycastle</groupId>
65                         <artifactId>bcprov-jdk15on</artifactId>
66                         <version>1.47</version>
67                 </dependency>
68                 <dependency>
69                         <groupId>org.onap.appc</groupId>
70                         <artifactId>appc-common</artifactId>
71                         <version>${project.version}</version>
72                         <scope>compile</scope>
73                 </dependency>
74
75                 <dependency>
76                         <groupId>javax</groupId>
77                         <artifactId>javaee-api</artifactId>
78                         <version>7.0</version>
79                 </dependency>
80
81
82                 <dependency>
83                         <groupId>com.att.cdp</groupId>
84                         <artifactId>cdp-pal-common</artifactId>
85                         <scope>compile</scope>
86                 </dependency>
87
88                 <dependency>
89                         <groupId>com.att.cdp</groupId>
90                         <artifactId>cdp-pal-openstack</artifactId>
91                         <scope>compile</scope>
92                 </dependency>
93
94                 <dependency>
95                         <groupId>javax.ws.rs</groupId>
96                         <artifactId>javax.ws.rs-api</artifactId>
97                 </dependency>
98
99                 <!-- Jersey support needed for OpenStack connector and API version logic -->
100                 <dependency>
101                         <groupId>com.sun.jersey</groupId>
102                         <artifactId>jersey-client</artifactId>
103                 </dependency>
104
105                 <dependency>
106                         <groupId>com.sun.jersey</groupId>
107                         <artifactId>jersey-json</artifactId>
108                 </dependency>
109
110                 <dependency>
111                         <groupId>javax.xml.bind</groupId>
112                         <artifactId>jaxb-api</artifactId>
113                         <version>2.2.3</version>
114                 </dependency>
115
116                 <dependency>
117                         <groupId>javax.xml</groupId>
118                         <artifactId>jaxp-api</artifactId>
119                         <version>1.4.2</version>
120                 </dependency>
121
122                 <!-- Needed to run test cases -->
123                 <dependency>
124                         <groupId>org.glassfish.jersey.core</groupId>
125                         <artifactId>jersey-common</artifactId>
126                         <version>2.9.1</version>
127             <scope>test</scope>
128                 </dependency>
129
130                 <dependency>
131                         <groupId>org.codehaus.jackson</groupId>
132                         <artifactId>jackson-jaxrs</artifactId>
133                         <version>1.9.12</version>
134                 </dependency>
135
136                 <dependency>
137                         <groupId>junit</groupId>
138                         <artifactId>junit</artifactId>
139                         <scope>test</scope>
140                 </dependency>
141
142                 <dependency>
143                         <groupId>org.onap.ccsdk.sli.core</groupId>
144                         <artifactId>sli-common</artifactId>
145                         <scope>provided</scope>
146                         <!-- Added exclusion to prevent missing dependency issue on dblib -->
147                         <exclusions>
148                                 <exclusion>
149                                         <groupId>org.onap.ccsdk.sli.core</groupId>
150                                         <artifactId>dblib-provider</artifactId>
151                                 </exclusion>
152                         </exclusions>
153                 </dependency>
154                 
155                 <dependency>
156                         <groupId>org.onap.ccsdk.sli.core</groupId>
157                         <artifactId>sli-provider</artifactId>
158                         <scope>provided</scope>
159                         <!-- Added exclusion to prevent missing dependency issue on dblib -->
160                         <exclusions>
161                                 <exclusion>
162                                         <groupId>org.onap.ccsdk.sli.core</groupId>
163                                         <artifactId>dblib-provider</artifactId>
164                                 </exclusion>
165                         </exclusions>
166                 </dependency>
167
168                 <dependency>
169                         <groupId>equinoxSDK381</groupId>
170                         <artifactId>org.eclipse.osgi</artifactId>
171                 </dependency>
172
173                 <dependency>
174                         <groupId>org.slf4j</groupId>
175                         <artifactId>slf4j-api</artifactId>
176                 </dependency>
177
178                 <dependency>
179                         <groupId>org.slf4j</groupId>
180                         <artifactId>jcl-over-slf4j</artifactId>
181                 </dependency>
182
183                 <dependency>
184             <groupId>org.mariadb.jdbc</groupId>
185                         <artifactId>mariadb-java-client</artifactId>
186                 </dependency>
187
188                 <dependency>
189                         <groupId>com.vmware</groupId>
190                         <artifactId>vijava</artifactId>
191                         <version>5.1</version>
192                         <scope>compile</scope>
193                 </dependency>
194
195                 <dependency>
196                         <groupId>xerces</groupId>
197                         <artifactId>xerces</artifactId>
198                         <version>2.4.0</version>
199                         <scope>provided</scope>
200                 </dependency>
201
202         </dependencies>
203
204         <build>
205                 <plugins>
206                         <plugin>
207                                 <groupId>org.apache.felix</groupId>
208                                 <artifactId>maven-bundle-plugin</artifactId>
209                                 <extensions>true</extensions>
210                                 <configuration>
211                                         <instructions>
212                                                 <Bundle-SymbolicName>appc-rest-healthcheck-adapter</Bundle-SymbolicName>
213                                                 <Bundle-Activator>org.onap.appc.adapter.restHealthcheck.RestHealthcheckActivator</Bundle-Activator>
214                                                 <Export-Package>org.onap.appc.adapter.restHealthcheck</Export-Package>
215                                                 <Import-Package>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.auth.*
216                                                 </Import-Package>
217                                                 <Embed-Dependency>
218                                                         *;scope=compile|runtime;artifactId=!sli-common|!appc-common|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|xml-apis
219                                                 </Embed-Dependency>
220                                                 <Embed-Transitive>true</Embed-Transitive>
221                                         </instructions>
222
223                                         <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
224                                 </configuration>
225                         </plugin>
226                 </plugins>
227         </build>
228 </project>