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