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