update mockito version in APPC
[appc.git] / appc-config / appc-config-adaptor / 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
26     <modelVersion>4.0.0</modelVersion>
27         <parent>
28                 <groupId>org.onap.appc.parent</groupId>
29                 <artifactId>binding-parent</artifactId>
30                 <version>2.7.0-SNAPSHOT</version>
31                 <relativePath/>
32         </parent>
33         <groupId>org.onap.appc</groupId>
34
35     <artifactId>appc-config-adaptor-provider</artifactId>
36     <packaging>bundle</packaging>
37     <name>APPC Config Component Adaptor - Provider</name>
38     <url>http://maven.apache.org</url>
39
40     <properties>
41         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42         <licenseDir>${project.parent.parent.parent.basedir}</licenseDir>
43     </properties>
44
45     <dependencies>
46         <dependency>
47             <groupId>junit</groupId>
48             <artifactId>junit</artifactId>
49             <scope>test</scope>
50         </dependency>
51         <dependency>
52             <groupId>org.onap.ccsdk.sli.core</groupId>
53             <artifactId>sli-common</artifactId>
54             <scope>compile</scope>
55         </dependency>
56         <dependency>
57             <groupId>org.onap.ccsdk.sli.core</groupId>
58             <artifactId>sli-provider</artifactId>
59             <scope>compile</scope>
60         </dependency>
61         <dependency>
62             <groupId>org.powermock</groupId>
63             <artifactId>powermock-api-mockito</artifactId>
64             <version>1.6.4</version>
65             <scope>test</scope>
66         </dependency>
67         <dependency>
68             <groupId>org.mockito</groupId>
69             <artifactId>mockito-core</artifactId>
70             <version>1.10.19</version>
71             <scope>test</scope>
72         </dependency>
73         <dependency>
74             <groupId>org.powermock</groupId>
75             <artifactId>powermock-module-junit4</artifactId>
76             <version>1.6.4</version>
77             <scope>test</scope>
78         </dependency>
79         <dependency>
80          <groupId>ch.qos.logback</groupId>
81          <artifactId>logback-classic</artifactId>
82          <version>${logback.version}</version>
83         </dependency>
84         <dependency>
85             <groupId>com.att.eelf</groupId>
86             <artifactId>eelf-core</artifactId>
87             <exclusions>
88                 <exclusion>
89                     <groupId>ch.qos.logback</groupId>
90                     <artifactId>logback-classic</artifactId>
91                 </exclusion>
92             </exclusions>
93         </dependency>
94
95         <dependency>
96             <groupId>com.jcraft</groupId>
97             <artifactId>jsch</artifactId>
98             <version>0.1.52</version>
99         </dependency>
100
101         <dependency>
102             <groupId>jdom</groupId>
103             <artifactId>jdom</artifactId>
104             <version>1.1</version>
105         </dependency>
106
107         <dependency>
108             <groupId>xerces</groupId>
109             <artifactId>xerces</artifactId>
110             <version>2.4.0</version>
111             <scope>provided</scope>
112         </dependency>
113         <dependency>
114             <groupId>org.glassfish.jersey.core</groupId>
115             <artifactId>jersey-client</artifactId>
116             <scope>provided</scope>
117         </dependency>
118         
119         <dependency>
120             <groupId>org.glassfish.jersey.security</groupId>
121             <artifactId>oauth1-client</artifactId>
122         </dependency>
123
124         <dependency>
125             <groupId>org.jasypt</groupId>
126             <artifactId>jasypt</artifactId>
127             <version>1.9.2</version>
128             <scope>compile</scope>
129         </dependency>
130         <dependency>
131             <groupId>commons-io</groupId>
132             <artifactId>commons-io</artifactId>
133             <scope>test</scope>
134         </dependency>
135         <dependency>
136             <groupId>org.onap.appc</groupId>
137             <artifactId>appc-common-bundle</artifactId>
138             <version>${project.version}</version>
139         </dependency>
140         <dependency>
141             <groupId>org.osgi</groupId>
142             <artifactId>org.osgi.core</artifactId>
143             <scope>provided</scope>
144         </dependency>
145     </dependencies>
146
147     <build>
148         <plugins>
149             <plugin>
150                 <groupId>org.apache.felix</groupId>
151                 <artifactId>maven-bundle-plugin</artifactId>
152                 <extensions>true</extensions>
153                 <configuration>
154                     <instructions>
155                         <Bundle-SymbolicName>appc.config.adaptor</Bundle-SymbolicName>
156                         <Bundle-Activator>org.onap.appc.ccadaptor.CCAActivator</Bundle-Activator>
157                         <Export-Package>org.onap.appc.adaptor</Export-Package>
158                         <Import-Package>*;resolution:=optional</Import-Package>
159                         <Embed-Dependency>jasypt,jsch,eelf-core</Embed-Dependency>
160                         <DynamicImport-Package>*</DynamicImport-Package>
161                     </instructions>
162                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
163                 </configuration>
164             </plugin>
165         </plugins>
166     </build>
167     <version>1.7.0-SNAPSHOT</version>
168 </project>