blob: d3827359b27cebd54107f6c0aef402376f46a3a4 [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 ================================================================================
Patrick Brady298a8f52019-05-08 15:14:49 -07006 Copyright (C) 2017-2019 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>
Patrick Brady298a8f52019-05-08 15:14:49 -070025 <groupId>org.onap.appc.parent</groupId>
26 <artifactId>binding-parent</artifactId>
Patrick Brady8183cf12019-05-20 23:12:51 -070027 <version>2.6.0-SNAPSHOT</version>
Patrick Brady298a8f52019-05-08 15:14:49 -070028 <relativePath />
Taka37cbf4c2018-02-13 16:02:05 -050029 </parent>
Patrick Bradyc7d00752017-06-01 10:45:37 -070030
Patrick Brady298a8f52019-05-08 15:14:49 -070031 <groupId>org.onap.appc</groupId>
Taka37cbf4c2018-02-13 16:02:05 -050032 <artifactId>appc-rest-healthcheck-adapter-bundle</artifactId>
33 <packaging>bundle</packaging>
34 <name>rest healthcheck Adapter - bundle</name>
Patrick Bradyc7d00752017-06-01 10:45:37 -070035
Taka37cbf4c2018-02-13 16:02:05 -050036 <dependencies>
37 <dependency>
38 <groupId>commons-codec</groupId>
39 <artifactId>commons-codec</artifactId>
40 </dependency>
41 <!-- http://mvnrepository.com/artifact/commons-logging/commons-logging -->
42 <dependency>
43 <groupId>commons-logging</groupId>
44 <artifactId>commons-logging</artifactId>
45 <version>1.2</version>
46 </dependency>
47 <!-- http://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
48 <dependency>
49 <groupId>org.apache.httpcomponents</groupId>
50 <artifactId>httpcore</artifactId>
51 <version>4.4.4</version>
52 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -070053
Taka37cbf4c2018-02-13 16:02:05 -050054 <dependency>
55 <groupId>org.apache.httpcomponents</groupId>
56 <artifactId>httpclient</artifactId>
Taka Chobda76522018-03-07 11:42:59 -050057 <version>4.5.3</version>
Taka37cbf4c2018-02-13 16:02:05 -050058 </dependency>
59 <dependency>
Taka37cbf4c2018-02-13 16:02:05 -050060 <groupId>org.onap.appc</groupId>
Ryan Young7b632b42018-08-23 13:35:03 -040061 <artifactId>appc-common-bundle</artifactId>
Taka37cbf4c2018-02-13 16:02:05 -050062 <version>${project.version}</version>
63 <scope>compile</scope>
64 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -070065
Taka37cbf4c2018-02-13 16:02:05 -050066 <dependency>
67 <groupId>javax</groupId>
68 <artifactId>javaee-api</artifactId>
69 <version>7.0</version>
70 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -070071
72
Taka37cbf4c2018-02-13 16:02:05 -050073 <dependency>
74 <groupId>com.att.cdp</groupId>
75 <artifactId>cdp-pal-common</artifactId>
Patrick Brady298a8f52019-05-08 15:14:49 -070076 <version>${cdp.pal.version}</version>
Taka37cbf4c2018-02-13 16:02:05 -050077 <scope>compile</scope>
Patrick Brady28da5022018-09-17 12:52:55 -070078 <exclusions>
79 <exclusion>
80 <groupId>ch.qos.logback</groupId>
81 <artifactId>logback-classic</artifactId>
82 </exclusion>
83 </exclusions>
Taka37cbf4c2018-02-13 16:02:05 -050084 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -070085
Taka37cbf4c2018-02-13 16:02:05 -050086 <dependency>
87 <groupId>com.att.cdp</groupId>
88 <artifactId>cdp-pal-openstack</artifactId>
Patrick Brady298a8f52019-05-08 15:14:49 -070089 <version>${cdp.pal.version}</version>
Taka37cbf4c2018-02-13 16:02:05 -050090 <scope>compile</scope>
Patrick Brady28da5022018-09-17 12:52:55 -070091 <exclusions>
92 <exclusion>
93 <groupId>com.att.cdp</groupId>
94 <artifactId>cdp-pal-common</artifactId>
95 </exclusion>
96 </exclusions>
Taka37cbf4c2018-02-13 16:02:05 -050097 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -070098
Taka37cbf4c2018-02-13 16:02:05 -050099 <dependency>
100 <groupId>javax.ws.rs</groupId>
101 <artifactId>javax.ws.rs-api</artifactId>
102 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700103
Taka37cbf4c2018-02-13 16:02:05 -0500104 <!-- Jersey support needed for OpenStack connector and API version logic -->
105 <dependency>
106 <groupId>com.sun.jersey</groupId>
107 <artifactId>jersey-client</artifactId>
108 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700109
Taka37cbf4c2018-02-13 16:02:05 -0500110 <dependency>
111 <groupId>com.sun.jersey</groupId>
112 <artifactId>jersey-json</artifactId>
113 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700114
Taka37cbf4c2018-02-13 16:02:05 -0500115 <dependency>
116 <groupId>javax.xml.bind</groupId>
117 <artifactId>jaxb-api</artifactId>
118 <version>2.2.3</version>
119 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700120
Taka37cbf4c2018-02-13 16:02:05 -0500121 <dependency>
122 <groupId>javax.xml</groupId>
123 <artifactId>jaxp-api</artifactId>
124 <version>1.4.2</version>
125 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700126
Taka37cbf4c2018-02-13 16:02:05 -0500127 <!-- Needed to run test cases -->
128 <dependency>
129 <groupId>org.glassfish.jersey.core</groupId>
130 <artifactId>jersey-common</artifactId>
131 <version>2.9.1</version>
Patrick Brady38713202017-07-28 11:29:23 -0700132 <scope>test</scope>
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>org.codehaus.jackson</groupId>
137 <artifactId>jackson-jaxrs</artifactId>
Taka Cho65d7a302018-03-01 20:57:52 -0500138 <version>1.9.13</version>
Taka37cbf4c2018-02-13 16:02:05 -0500139 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700140
Taka37cbf4c2018-02-13 16:02:05 -0500141 <dependency>
142 <groupId>junit</groupId>
143 <artifactId>junit</artifactId>
144 <scope>test</scope>
145 </dependency>
146 <dependency>
147 <groupId>org.mockito</groupId>
148 <artifactId>mockito-core</artifactId>
149 </dependency>
150 <dependency>
151 <groupId>org.onap.ccsdk.sli.core</groupId>
152 <artifactId>sli-common</artifactId>
153 <scope>provided</scope>
154 <!-- Added exclusion to prevent missing dependency issue on dblib -->
155 <exclusions>
156 <exclusion>
157 <groupId>org.onap.ccsdk.sli.core</groupId>
158 <artifactId>dblib-provider</artifactId>
159 </exclusion>
160 </exclusions>
161 </dependency>
162
163 <dependency>
164 <groupId>org.onap.ccsdk.sli.core</groupId>
165 <artifactId>sli-provider</artifactId>
166 <scope>provided</scope>
167 <!-- Added exclusion to prevent missing dependency issue on dblib -->
168 <exclusions>
169 <exclusion>
170 <groupId>org.onap.ccsdk.sli.core</groupId>
171 <artifactId>dblib-provider</artifactId>
172 </exclusion>
173 </exclusions>
174 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700175
Taka37cbf4c2018-02-13 16:02:05 -0500176 <dependency>
177 <groupId>equinoxSDK381</groupId>
178 <artifactId>org.eclipse.osgi</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>slf4j-api</artifactId>
184 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700185
Taka37cbf4c2018-02-13 16:02:05 -0500186 <dependency>
187 <groupId>org.slf4j</groupId>
188 <artifactId>jcl-over-slf4j</artifactId>
189 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700190
Taka37cbf4c2018-02-13 16:02:05 -0500191 <dependency>
Patrick Bradyac62a4a2017-09-13 00:11:21 -0700192 <groupId>org.mariadb.jdbc</groupId>
Taka37cbf4c2018-02-13 16:02:05 -0500193 <artifactId>mariadb-java-client</artifactId>
194 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700195
Taka37cbf4c2018-02-13 16:02:05 -0500196 <dependency>
197 <groupId>com.vmware</groupId>
198 <artifactId>vijava</artifactId>
199 <version>5.1</version>
200 <scope>compile</scope>
201 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700202
Taka37cbf4c2018-02-13 16:02:05 -0500203 <dependency>
204 <groupId>xerces</groupId>
205 <artifactId>xerces</artifactId>
206 <version>2.4.0</version>
207 <scope>provided</scope>
208 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700209
Taka37cbf4c2018-02-13 16:02:05 -0500210 </dependencies>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700211
Taka37cbf4c2018-02-13 16:02:05 -0500212 <build>
213 <plugins>
214 <plugin>
215 <groupId>org.apache.felix</groupId>
216 <artifactId>maven-bundle-plugin</artifactId>
217 <extensions>true</extensions>
218 <configuration>
219 <instructions>
220 <Bundle-SymbolicName>appc-rest-healthcheck-adapter</Bundle-SymbolicName>
221 <Bundle-Activator>org.onap.appc.adapter.restHealthcheck.RestHealthcheckActivator</Bundle-Activator>
222 <Export-Package>org.onap.appc.adapter.restHealthcheck</Export-Package>
223 <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.*
224 </Import-Package>
225 <Embed-Dependency>
Ryan Young7b632b42018-08-23 13:35:03 -0400226 *;scope=compile|runtime;artifactId=!sli-common|!appc-common-bundle|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|xml-apis
Taka37cbf4c2018-02-13 16:02:05 -0500227 </Embed-Dependency>
228 <Embed-Transitive>true</Embed-Transitive>
229 </instructions>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700230
Taka37cbf4c2018-02-13 16:02:05 -0500231 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
232 </configuration>
233 </plugin>
234 </plugins>
235 </build>
Patrick Bradyed1cf1f2019-04-26 12:36:25 -0700236 <version>1.6.0-SNAPSHOT</version>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700237</project>