blob: e10c4d5cb911fc929b0ab9bfdc0581ca5099d740 [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 ================================================================================
John McClungf6332bd2018-06-13 13:07:38 -04006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Skip Wonnell8c4b89b2018-01-12 09:24:03 -06007 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=========================================================
Skip Wonnell8c4b89b2018-01-12 09:24:03 -060021 -->
Patrick Bradyc7d00752017-06-01 10:45:37 -070022<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 -050023 <modelVersion>4.0.0</modelVersion>
24 <parent>
25 <groupId>org.onap.appc</groupId>
26 <artifactId>appc-rest-healthcheck-adapter</artifactId>
Patrick Brady84d0a252018-05-22 10:42:55 -070027 <version>1.4.0-SNAPSHOT</version>
Taka37cbf4c2018-02-13 16:02:05 -050028 </parent>
Patrick Bradyc7d00752017-06-01 10:45:37 -070029
Taka37cbf4c2018-02-13 16:02:05 -050030 <artifactId>appc-rest-healthcheck-adapter-bundle</artifactId>
31 <packaging>bundle</packaging>
32 <name>rest healthcheck Adapter - bundle</name>
Patrick Bradyc7d00752017-06-01 10:45:37 -070033
Taka37cbf4c2018-02-13 16:02:05 -050034 <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>
Patrick Bradyc7d00752017-06-01 10:45:37 -070051
Taka37cbf4c2018-02-13 16:02:05 -050052 <dependency>
53 <groupId>org.apache.httpcomponents</groupId>
54 <artifactId>httpclient</artifactId>
Taka Chobda76522018-03-07 11:42:59 -050055 <version>4.5.3</version>
Taka37cbf4c2018-02-13 16:02:05 -050056 </dependency>
57 <dependency>
58 <groupId>org.bouncycastle</groupId>
59 <artifactId>bcpkix-jdk15on</artifactId>
Taka Cho6158e392018-03-07 16:39:55 -050060 <version>1.56</version>
Taka37cbf4c2018-02-13 16:02:05 -050061 </dependency>
62 <dependency>
63 <groupId>org.bouncycastle</groupId>
64 <artifactId>bcprov-jdk15on</artifactId>
Taka Cho6158e392018-03-07 16:39:55 -050065 <version>1.56</version>
Taka37cbf4c2018-02-13 16:02:05 -050066 </dependency>
67 <dependency>
68 <groupId>org.onap.appc</groupId>
69 <artifactId>appc-common</artifactId>
70 <version>${project.version}</version>
71 <scope>compile</scope>
72 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -070073
Taka37cbf4c2018-02-13 16:02:05 -050074 <dependency>
75 <groupId>javax</groupId>
76 <artifactId>javaee-api</artifactId>
77 <version>7.0</version>
78 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -070079
80
Taka37cbf4c2018-02-13 16:02:05 -050081 <dependency>
82 <groupId>com.att.cdp</groupId>
83 <artifactId>cdp-pal-common</artifactId>
84 <scope>compile</scope>
85 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -070086
Taka37cbf4c2018-02-13 16:02:05 -050087 <dependency>
88 <groupId>com.att.cdp</groupId>
89 <artifactId>cdp-pal-openstack</artifactId>
90 <scope>compile</scope>
91 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -070092
Taka37cbf4c2018-02-13 16:02:05 -050093 <dependency>
94 <groupId>javax.ws.rs</groupId>
95 <artifactId>javax.ws.rs-api</artifactId>
96 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -070097
Taka37cbf4c2018-02-13 16:02:05 -050098 <!-- Jersey support needed for OpenStack connector and API version logic -->
99 <dependency>
100 <groupId>com.sun.jersey</groupId>
101 <artifactId>jersey-client</artifactId>
102 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700103
Taka37cbf4c2018-02-13 16:02:05 -0500104 <dependency>
105 <groupId>com.sun.jersey</groupId>
106 <artifactId>jersey-json</artifactId>
107 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700108
Taka37cbf4c2018-02-13 16:02:05 -0500109 <dependency>
110 <groupId>javax.xml.bind</groupId>
111 <artifactId>jaxb-api</artifactId>
112 <version>2.2.3</version>
113 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700114
Taka37cbf4c2018-02-13 16:02:05 -0500115 <dependency>
116 <groupId>javax.xml</groupId>
117 <artifactId>jaxp-api</artifactId>
118 <version>1.4.2</version>
119 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700120
Taka37cbf4c2018-02-13 16:02:05 -0500121 <!-- Needed to run test cases -->
122 <dependency>
123 <groupId>org.glassfish.jersey.core</groupId>
124 <artifactId>jersey-common</artifactId>
125 <version>2.9.1</version>
Patrick Brady38713202017-07-28 11:29:23 -0700126 <scope>test</scope>
Taka37cbf4c2018-02-13 16:02:05 -0500127 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700128
Taka37cbf4c2018-02-13 16:02:05 -0500129 <dependency>
130 <groupId>org.codehaus.jackson</groupId>
131 <artifactId>jackson-jaxrs</artifactId>
Taka Cho65d7a302018-03-01 20:57:52 -0500132 <version>1.9.13</version>
Taka37cbf4c2018-02-13 16:02:05 -0500133 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700134
Taka37cbf4c2018-02-13 16:02:05 -0500135 <dependency>
136 <groupId>junit</groupId>
137 <artifactId>junit</artifactId>
138 <scope>test</scope>
139 </dependency>
140 <dependency>
141 <groupId>org.mockito</groupId>
142 <artifactId>mockito-core</artifactId>
143 </dependency>
144 <dependency>
145 <groupId>org.onap.ccsdk.sli.core</groupId>
146 <artifactId>sli-common</artifactId>
147 <scope>provided</scope>
148 <!-- Added exclusion to prevent missing dependency issue on dblib -->
149 <exclusions>
150 <exclusion>
151 <groupId>org.onap.ccsdk.sli.core</groupId>
152 <artifactId>dblib-provider</artifactId>
153 </exclusion>
154 </exclusions>
155 </dependency>
156
157 <dependency>
158 <groupId>org.onap.ccsdk.sli.core</groupId>
159 <artifactId>sli-provider</artifactId>
160 <scope>provided</scope>
161 <!-- Added exclusion to prevent missing dependency issue on dblib -->
162 <exclusions>
163 <exclusion>
164 <groupId>org.onap.ccsdk.sli.core</groupId>
165 <artifactId>dblib-provider</artifactId>
166 </exclusion>
167 </exclusions>
168 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700169
Taka37cbf4c2018-02-13 16:02:05 -0500170 <dependency>
171 <groupId>equinoxSDK381</groupId>
172 <artifactId>org.eclipse.osgi</artifactId>
173 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700174
Taka37cbf4c2018-02-13 16:02:05 -0500175 <dependency>
176 <groupId>org.slf4j</groupId>
177 <artifactId>slf4j-api</artifactId>
178 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700179
Taka37cbf4c2018-02-13 16:02:05 -0500180 <dependency>
181 <groupId>org.slf4j</groupId>
182 <artifactId>jcl-over-slf4j</artifactId>
183 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700184
Taka37cbf4c2018-02-13 16:02:05 -0500185 <dependency>
Patrick Bradyac62a4a2017-09-13 00:11:21 -0700186 <groupId>org.mariadb.jdbc</groupId>
Taka37cbf4c2018-02-13 16:02:05 -0500187 <artifactId>mariadb-java-client</artifactId>
188 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700189
Taka37cbf4c2018-02-13 16:02:05 -0500190 <dependency>
191 <groupId>com.vmware</groupId>
192 <artifactId>vijava</artifactId>
193 <version>5.1</version>
194 <scope>compile</scope>
195 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700196
Taka37cbf4c2018-02-13 16:02:05 -0500197 <dependency>
198 <groupId>xerces</groupId>
199 <artifactId>xerces</artifactId>
200 <version>2.4.0</version>
201 <scope>provided</scope>
202 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700203
Taka37cbf4c2018-02-13 16:02:05 -0500204 </dependencies>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700205
Taka37cbf4c2018-02-13 16:02:05 -0500206 <build>
207 <plugins>
208 <plugin>
209 <groupId>org.apache.felix</groupId>
210 <artifactId>maven-bundle-plugin</artifactId>
211 <extensions>true</extensions>
212 <configuration>
213 <instructions>
214 <Bundle-SymbolicName>appc-rest-healthcheck-adapter</Bundle-SymbolicName>
215 <Bundle-Activator>org.onap.appc.adapter.restHealthcheck.RestHealthcheckActivator</Bundle-Activator>
216 <Export-Package>org.onap.appc.adapter.restHealthcheck</Export-Package>
217 <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.*
218 </Import-Package>
219 <Embed-Dependency>
220 *;scope=compile|runtime;artifactId=!sli-common|!appc-common|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|xml-apis
221 </Embed-Dependency>
222 <Embed-Transitive>true</Embed-Transitive>
223 </instructions>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700224
Taka37cbf4c2018-02-13 16:02:05 -0500225 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
226 </configuration>
227 </plugin>
228 </plugins>
229 </build>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700230</project>