blob: 3a5f3cd5a5f80381d9cdfac0779ec13c0873a609 [file] [log] [blame]
Patrick Bradyc7d00752017-06-01 10:45:37 -07001<?xml version="1.0" encoding="UTF-8"?>
Skip Wonnell8c4b89b2018-01-12 09:24:03 -06002<!--
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 -->
Patrick Bradyc7d00752017-06-01 10:45:37 -070023<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">
Taka37cbf4c2018-02-13 16:02:05 -050024 <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>
Patrick Bradyc7d00752017-06-01 10:45:37 -070030
Taka37cbf4c2018-02-13 16:02:05 -050031 <artifactId>appc-rest-healthcheck-adapter-bundle</artifactId>
32 <packaging>bundle</packaging>
33 <name>rest healthcheck Adapter - bundle</name>
Patrick Bradyc7d00752017-06-01 10:45:37 -070034
Taka37cbf4c2018-02-13 16:02:05 -050035 <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>
Patrick Bradyc7d00752017-06-01 10:45:37 -070052
Taka37cbf4c2018-02-13 16:02:05 -050053 <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>
Patrick Bradyc7d00752017-06-01 10:45:37 -070074
Taka37cbf4c2018-02-13 16:02:05 -050075 <dependency>
76 <groupId>javax</groupId>
77 <artifactId>javaee-api</artifactId>
78 <version>7.0</version>
79 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -070080
81
Taka37cbf4c2018-02-13 16:02:05 -050082 <dependency>
83 <groupId>com.att.cdp</groupId>
84 <artifactId>cdp-pal-common</artifactId>
85 <scope>compile</scope>
86 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -070087
Taka37cbf4c2018-02-13 16:02:05 -050088 <dependency>
89 <groupId>com.att.cdp</groupId>
90 <artifactId>cdp-pal-openstack</artifactId>
91 <scope>compile</scope>
92 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -070093
Taka37cbf4c2018-02-13 16:02:05 -050094 <dependency>
95 <groupId>javax.ws.rs</groupId>
96 <artifactId>javax.ws.rs-api</artifactId>
97 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -070098
Taka37cbf4c2018-02-13 16:02:05 -050099 <!-- 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>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700104
Taka37cbf4c2018-02-13 16:02:05 -0500105 <dependency>
106 <groupId>com.sun.jersey</groupId>
107 <artifactId>jersey-json</artifactId>
108 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700109
Taka37cbf4c2018-02-13 16:02:05 -0500110 <dependency>
111 <groupId>javax.xml.bind</groupId>
112 <artifactId>jaxb-api</artifactId>
113 <version>2.2.3</version>
114 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700115
Taka37cbf4c2018-02-13 16:02:05 -0500116 <dependency>
117 <groupId>javax.xml</groupId>
118 <artifactId>jaxp-api</artifactId>
119 <version>1.4.2</version>
120 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700121
Taka37cbf4c2018-02-13 16:02:05 -0500122 <!-- 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>
Patrick Brady38713202017-07-28 11:29:23 -0700127 <scope>test</scope>
Taka37cbf4c2018-02-13 16:02:05 -0500128 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700129
Taka37cbf4c2018-02-13 16:02:05 -0500130 <dependency>
131 <groupId>org.codehaus.jackson</groupId>
132 <artifactId>jackson-jaxrs</artifactId>
133 <version>1.9.12</version>
134 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700135
Taka37cbf4c2018-02-13 16:02:05 -0500136 <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>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700170
Taka37cbf4c2018-02-13 16:02:05 -0500171 <dependency>
172 <groupId>equinoxSDK381</groupId>
173 <artifactId>org.eclipse.osgi</artifactId>
174 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700175
Taka37cbf4c2018-02-13 16:02:05 -0500176 <dependency>
177 <groupId>org.slf4j</groupId>
178 <artifactId>slf4j-api</artifactId>
179 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700180
Taka37cbf4c2018-02-13 16:02:05 -0500181 <dependency>
182 <groupId>org.slf4j</groupId>
183 <artifactId>jcl-over-slf4j</artifactId>
184 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700185
Taka37cbf4c2018-02-13 16:02:05 -0500186 <dependency>
Patrick Bradyac62a4a2017-09-13 00:11:21 -0700187 <groupId>org.mariadb.jdbc</groupId>
Taka37cbf4c2018-02-13 16:02:05 -0500188 <artifactId>mariadb-java-client</artifactId>
189 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700190
Taka37cbf4c2018-02-13 16:02:05 -0500191 <dependency>
192 <groupId>com.vmware</groupId>
193 <artifactId>vijava</artifactId>
194 <version>5.1</version>
195 <scope>compile</scope>
196 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700197
Taka37cbf4c2018-02-13 16:02:05 -0500198 <dependency>
199 <groupId>xerces</groupId>
200 <artifactId>xerces</artifactId>
201 <version>2.4.0</version>
202 <scope>provided</scope>
203 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700204
Taka37cbf4c2018-02-13 16:02:05 -0500205 </dependencies>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700206
Taka37cbf4c2018-02-13 16:02:05 -0500207 <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>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700225
Taka37cbf4c2018-02-13 16:02:05 -0500226 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
227 </configuration>
228 </plugin>
229 </plugins>
230 </build>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700231</project>