update mockito version in APPC
[appc.git] / appc-inbound / appc-interfaces-service / 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         <groupId>org.onap.appc</groupId>
31     <artifactId>appc-interfaces-service-bundle</artifactId>
32     <packaging>bundle</packaging>
33
34     <build>
35         <plugins>
36             <plugin>
37                 <groupId>org.apache.felix</groupId>
38                 <artifactId>maven-bundle-plugin</artifactId>
39                 <extensions>true</extensions>
40                 <configuration>
41                     <instructions>
42                     <Export-Package>org.onap.appc.interfaces.services</Export-Package>
43                          <Import-Package>org.onap.appc.aai.client,org.onap.appc.aai.client.*,*;resolution:=optional</Import-Package>
44                          <Embed-Dependency>jackson-dataformat-yaml</Embed-Dependency>
45                          <DynamicImport-Package>*</DynamicImport-Package>
46                          <Embed-Transitive>true</Embed-Transitive>
47                     </instructions>
48                 </configuration>
49             </plugin>
50         </plugins>
51     </build>
52
53     <dependencies>
54         <dependency>
55             <groupId>org.onap.appc</groupId>
56             <artifactId>appc-interfaces-service-model</artifactId>
57             <version>${project.version}</version>
58         </dependency>
59        <dependency>
60             <groupId>org.onap.appc</groupId>
61             <artifactId>appc-aai-client-provider</artifactId>
62             <version>${project.version}</version>
63         </dependency>
64         <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
65         <dependency>
66             <groupId>com.google.code.gson</groupId>
67             <artifactId>gson</artifactId>
68             <version>2.8.0</version>
69         </dependency>
70         <dependency>
71                     <groupId>org.onap.ccsdk.sli.adaptors</groupId>
72                    <artifactId>aai-service-provider</artifactId>
73                 <scope>compile</scope>
74             </dependency>
75         <dependency>
76             <groupId>org.apache.commons</groupId>
77             <artifactId>commons-lang3</artifactId>
78         </dependency>
79
80         <dependency>
81             <groupId>junit</groupId>
82             <artifactId>junit</artifactId>
83             <scope>test</scope>
84         </dependency>
85         <dependency>
86            <groupId>org.mockito</groupId>
87            <artifactId>mockito-core</artifactId>
88            <version>1.10.19</version>
89            <scope>test</scope>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.controller</groupId>
93             <artifactId>config-api</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>org.opendaylight.controller</groupId>
97             <artifactId>sal-common-util</artifactId>
98         </dependency>
99         <dependency>
100             <artifactId>sal-test-model</artifactId>
101             <groupId>org.opendaylight.controller</groupId>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>org.opendaylight.controller</groupId>
106             <artifactId>sal-binding-broker-impl</artifactId>
107             <scope>test</scope>
108         </dependency>
109         <dependency>
110          <groupId>ch.qos.logback</groupId>
111          <artifactId>logback-classic</artifactId>
112          <version>${logback.version}</version>
113         </dependency>
114         <dependency>
115             <groupId>com.att.eelf</groupId>
116             <artifactId>eelf-core</artifactId>
117             <exclusions>
118                    <exclusion>
119                         <groupId>ch.qos.logback</groupId>
120                         <artifactId>logback-classic</artifactId>
121                    </exclusion>
122             </exclusions>
123         </dependency>
124         <dependency>
125             <groupId>com.fasterxml.jackson.dataformat</groupId>
126             <artifactId>jackson-dataformat-yaml</artifactId>
127             <version>2.3.2</version>
128         </dependency>
129         <dependency>
130             <groupId>com.fasterxml.jackson.core</groupId>
131             <artifactId>jackson-databind</artifactId>
132         </dependency>
133         <dependency>
134             <groupId>org.apache.commons</groupId>
135             <artifactId>commons-lang3</artifactId>
136         </dependency>
137         <dependency>
138             <groupId>org.apache.velocity</groupId>
139             <artifactId>velocity</artifactId>
140             <version>1.7</version>
141             <exclusions>
142                  <exclusion>
143                       <artifactId>commons-collections</artifactId>
144                       <groupId>commons-collections</groupId>
145                  </exclusion>
146             </exclusions>
147         </dependency>
148         <dependency>
149             <groupId>commons-collections</groupId>
150             <artifactId>commons-collections</artifactId>
151             <version>3.2.2</version>
152         </dependency>
153         <dependency>
154             <groupId>commons-io</groupId>
155             <artifactId>commons-io</artifactId>
156         </dependency>
157     </dependencies>
158     <version>1.7.0-SNAPSHOT</version>
159 </project>