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