upgrade bcprov to 1.56
[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.3</version>
57         </dependency>
58         <dependency>
59             <groupId>org.bouncycastle</groupId>
60             <artifactId>bcpkix-jdk15on</artifactId>
61             <version>1.56</version>
62         </dependency>
63         <dependency>
64             <groupId>org.bouncycastle</groupId>
65             <artifactId>bcprov-jdk15on</artifactId>
66             <version>1.56</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.13</version>
134         </dependency>
135
136         <dependency>
137             <groupId>junit</groupId>
138             <artifactId>junit</artifactId>
139             <scope>test</scope>
140         </dependency>
141         <dependency>
142             <groupId>org.mockito</groupId>
143             <artifactId>mockito-core</artifactId>
144         </dependency>
145         <dependency>
146             <groupId>org.onap.ccsdk.sli.core</groupId>
147             <artifactId>sli-common</artifactId>
148             <scope>provided</scope>
149             <!-- Added exclusion to prevent missing dependency issue on dblib -->
150             <exclusions>
151                 <exclusion>
152                     <groupId>org.onap.ccsdk.sli.core</groupId>
153                     <artifactId>dblib-provider</artifactId>
154                 </exclusion>
155             </exclusions>
156         </dependency>
157         
158         <dependency>
159             <groupId>org.onap.ccsdk.sli.core</groupId>
160             <artifactId>sli-provider</artifactId>
161             <scope>provided</scope>
162             <!-- Added exclusion to prevent missing dependency issue on dblib -->
163             <exclusions>
164                 <exclusion>
165                     <groupId>org.onap.ccsdk.sli.core</groupId>
166                     <artifactId>dblib-provider</artifactId>
167                 </exclusion>
168             </exclusions>
169         </dependency>
170
171         <dependency>
172             <groupId>equinoxSDK381</groupId>
173             <artifactId>org.eclipse.osgi</artifactId>
174         </dependency>
175
176         <dependency>
177             <groupId>org.slf4j</groupId>
178             <artifactId>slf4j-api</artifactId>
179         </dependency>
180
181         <dependency>
182             <groupId>org.slf4j</groupId>
183             <artifactId>jcl-over-slf4j</artifactId>
184         </dependency>
185
186         <dependency>
187             <groupId>org.mariadb.jdbc</groupId>
188             <artifactId>mariadb-java-client</artifactId>
189         </dependency>
190
191         <dependency>
192             <groupId>com.vmware</groupId>
193             <artifactId>vijava</artifactId>
194             <version>5.1</version>
195             <scope>compile</scope>
196         </dependency>
197
198         <dependency>
199             <groupId>xerces</groupId>
200             <artifactId>xerces</artifactId>
201             <version>2.4.0</version>
202             <scope>provided</scope>
203         </dependency>
204
205     </dependencies>
206
207     <build>
208         <plugins>
209             <plugin>
210                 <groupId>org.apache.felix</groupId>
211                 <artifactId>maven-bundle-plugin</artifactId>
212                 <extensions>true</extensions>
213                 <configuration>
214                     <instructions>
215                         <Bundle-SymbolicName>appc-rest-healthcheck-adapter</Bundle-SymbolicName>
216                         <Bundle-Activator>org.onap.appc.adapter.restHealthcheck.RestHealthcheckActivator</Bundle-Activator>
217                         <Export-Package>org.onap.appc.adapter.restHealthcheck</Export-Package>
218                         <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.*
219                         </Import-Package>
220                         <Embed-Dependency>
221                             *;scope=compile|runtime;artifactId=!sli-common|!appc-common|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|xml-apis
222                         </Embed-Dependency>
223                         <Embed-Transitive>true</Embed-Transitive>
224                     </instructions>
225
226                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
227                 </configuration>
228             </plugin>
229         </plugins>
230     </build>
231 </project>