update mockito version in APPC
[appc.git] / appc-outbound / appc-network-inventory-client / provider / 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   ================================================================================
8   Copyright (C) 2017 Amdocs
9   =============================================================================
10   Licensed under the Apache License, Version 2.0 (the "License");
11   you may not use this file except in compliance with the License.
12   You may obtain a copy of the License at
13
14        http://www.apache.org/licenses/LICENSE-2.0
15
16   Unless required by applicable law or agreed to in writing, software
17   distributed under the License is distributed on an "AS IS" BASIS,
18   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19   See the License for the specific language governing permissions and
20   limitations under the License.
21
22   ============LICENSE_END=========================================================
23   -->
24 <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">
25     <modelVersion>4.0.0</modelVersion>
26         <parent>
27                 <groupId>org.onap.appc.parent</groupId>
28                 <artifactId>binding-parent</artifactId>
29                 <version>2.7.0-SNAPSHOT</version>
30                 <relativePath/>
31         </parent>
32         <groupId>org.onap.appc</groupId>
33
34     <artifactId>appc-network-inventory-client-provider</artifactId>
35     <version>1.7.0-SNAPSHOT</version>
36     <packaging>bundle</packaging>
37     <name>APPC Network Client - Provider</name>
38
39     <dependencies>
40
41         <dependency>
42             <groupId>equinoxSDK381</groupId>
43             <artifactId>org.eclipse.osgi</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>commons-io</groupId>
47             <artifactId>commons-io</artifactId>
48         </dependency>
49         <dependency>
50          <groupId>ch.qos.logback</groupId>
51          <artifactId>logback-classic</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>com.att.eelf</groupId>
55             <artifactId>eelf-core</artifactId>
56             <exclusions>
57                  <exclusion>
58                       <groupId>ch.qos.logback</groupId>
59                       <artifactId>logback-classic</artifactId>
60                  </exclusion>
61             </exclusions>
62         </dependency>
63         <dependency>
64             <groupId>org.glassfish.jersey.core</groupId>
65             <artifactId>jersey-client</artifactId>
66             <scope>provided</scope>
67         </dependency>
68         <dependency>
69             <groupId>junit</groupId>
70             <artifactId>junit</artifactId>
71             <scope>test</scope>
72         </dependency>
73         <dependency>
74             <groupId>org.mockito</groupId>
75             <artifactId>mockito-core</artifactId>
76             <version>1.10.19</version>
77             <scope>test</scope>
78         </dependency>
79         <dependency>
80             <groupId>org.powermock</groupId>
81             <artifactId>powermock-api-mockito</artifactId>
82             <version>1.6.4</version>
83             <scope>test</scope>
84         </dependency>
85         <dependency>
86             <groupId>org.powermock</groupId>
87             <artifactId>powermock-module-junit4</artifactId>
88             <version>1.6.4</version>
89             <scope>test</scope>
90         </dependency>
91         <dependency>
92             <groupId>org.javassist</groupId>
93             <artifactId>javassist</artifactId>
94             <version>3.22.0-GA</version>
95             <scope>test</scope>
96         </dependency>
97         <dependency>
98             <groupId>org.onap.appc</groupId>
99             <artifactId>appc-config-params-provider</artifactId>
100             <version>${project.version}</version>
101         </dependency>
102         <dependency>
103             <groupId>org.onap.ccsdk.sli.core</groupId>
104             <artifactId>sli-common</artifactId>
105         </dependency>
106         <dependency>
107             <groupId>org.onap.ccsdk.sli.core</groupId>
108             <artifactId>sli-provider</artifactId>
109         </dependency>
110         <dependency>
111             <groupId>org.onap.ccsdk.sli.core</groupId>
112             <artifactId>dblib-provider</artifactId>
113         </dependency>
114         <dependency>
115             <groupId>org.json</groupId>
116             <artifactId>json</artifactId>
117         </dependency>
118         <dependency>
119             <groupId>com.fasterxml.jackson.dataformat</groupId>
120             <artifactId>jackson-dataformat-yaml</artifactId>
121         </dependency>
122         <dependency>
123             <groupId>org.yaml</groupId>
124             <artifactId>snakeyaml</artifactId>
125         </dependency>
126     </dependencies>
127
128     <build>
129         <plugins>
130             <plugin>
131                 <groupId>org.apache.felix</groupId>
132                 <artifactId>maven-bundle-plugin</artifactId>
133                 <extensions>true</extensions>
134                 <configuration>
135                     <instructions>
136                         <Bundle-SymbolicName>org.onap.appc.instar</Bundle-SymbolicName>
137                         <Bundle-Activator>org.onap.appc.instar.InstarClientActivator</Bundle-Activator>
138                         <Export-Package>org.onap.appc.instar</Export-Package>
139                         <Import-Package>*</Import-Package>
140                         <Embed-Dependency>jackson-dataformat-yaml,snakeyaml</Embed-Dependency>
141                     </instructions>
142                 </configuration>
143             </plugin>
144         </plugins>
145         <pluginManagement>
146             <plugins>
147             </plugins>
148         </pluginManagement>
149     </build>
150 </project>