Replace mockito-all by mockito-core (see Bug 7662)
[netvirt.git] / vpnservice / natservice / natservice-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3 Copyright (c) 2016 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10
11   <parent>
12     <groupId>org.opendaylight.netvirt</groupId>
13     <artifactId>config-parent</artifactId>
14     <version>0.4.0-SNAPSHOT</version>
15     <relativePath>../../commons/config-parent</relativePath>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <artifactId>natservice-impl</artifactId>
20   <packaging>bundle</packaging>
21   <properties>
22     <powermock.version>1.6.4</powermock.version>
23     <mockitoall.version>1.10.19</mockitoall.version>
24 </properties>
25   <dependencies>
26     <dependency>
27       <groupId>${project.groupId}</groupId>
28       <artifactId>natservice-api</artifactId>
29       <version>${vpnservices.version}</version>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.genius</groupId>
33       <artifactId>arputil-api</artifactId>
34       <version>${genius.version}</version>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.genius</groupId>
38       <artifactId>mdsalutil-api</artifactId>
39       <version>${genius.version}</version>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.genius</groupId>
43       <artifactId>itm-api</artifactId>
44       <version>${genius.version}</version>
45     </dependency>
46     <dependency>
47       <groupId>${project.groupId}</groupId>
48       <artifactId>bgpmanager-api</artifactId>
49       <version>${vpnservices.version}</version>
50     </dependency>
51     <dependency>
52       <groupId>${project.groupId}</groupId>
53       <artifactId>vpnmanager-api</artifactId>
54       <version>${vpnservices.version}</version>
55     </dependency>
56     <dependency>
57       <groupId>${project.groupId}</groupId>
58       <artifactId>fibmanager-api</artifactId>
59       <version>${vpnservices.version}</version>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.genius</groupId>
63       <artifactId>idmanager-api</artifactId>
64       <version>${genius.version}</version>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.genius</groupId>
68       <artifactId>interfacemanager-api</artifactId>
69       <version>${genius.version}</version>
70     </dependency>
71     <dependency>
72       <groupId>${project.groupId}</groupId>
73       <artifactId>neutronvpn-api</artifactId>
74       <version>${vpnservices.version}</version>
75     </dependency>
76     <dependency>
77       <groupId>${project.groupId}</groupId>
78       <artifactId>elanmanager-api</artifactId>
79       <version>${vpnservices.version}</version>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.openflowplugin.model</groupId>
83       <artifactId>model-flow-service</artifactId>
84       <version>${openflowplugin.version}</version>
85     </dependency>
86     <dependency>
87         <groupId>org.opendaylight.controller</groupId>
88         <artifactId>sal-binding-broker-impl</artifactId>
89     </dependency>
90     <dependency>
91         <groupId>commons-net</groupId>
92         <artifactId>commons-net</artifactId>
93     </dependency>
94   <!--  Only for unit-test -->
95    <dependency>
96         <groupId>org.mockito</groupId>
97         <artifactId>mockito-core</artifactId>
98         <version>${mockitoall.version}</version>
99         <scope>test</scope>
100     </dependency>
101     <dependency>
102         <groupId>org.powermock</groupId>
103         <artifactId>powermock-api-mockito</artifactId>
104         <version>${powermock.version}</version>
105         <scope>test</scope>
106     </dependency>
107     <dependency>
108         <groupId>org.powermock</groupId>
109         <artifactId>powermock-module-junit4</artifactId>
110         <version>${powermock.version}</version>
111         <scope>test</scope>
112     </dependency>
113     <dependency>
114       <groupId>org.opendaylight.infrautils</groupId>
115       <artifactId>counters-api</artifactId>
116       <version>${infrautils.version}</version>
117     </dependency>
118   </dependencies>
119
120     <!--
121         Maven Site Configuration
122
123         The following configuration is necessary for maven-site-plugin to
124         correctly identify the correct deployment path for OpenDaylight Maven
125         sites.
126     -->
127     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
128
129     <distributionManagement>
130         <site>
131             <id>opendaylight-site</id>
132             <url>${nexus.site.url}/${project.artifactId}/</url>
133         </site>
134     </distributionManagement>
135 </project>