2fa9b6c9373b93718a1fba09afffe5db9f35495a
[vpnservice.git] / elanmanager / elanmanager-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.vpnservice</groupId>
13     <artifactId>config-parent</artifactId>
14     <version>0.3.0-SNAPSHOT</version>
15     <relativePath>../../commons/config-parent</relativePath>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.vpnservice</groupId>
20   <artifactId>elanmanager-impl</artifactId>
21   <version>${vpnservices.version}</version>
22   <packaging>bundle</packaging>
23
24   <properties>
25     <powermock.version>1.6.4</powermock.version>
26     <mockitoall.version>1.10.19</mockitoall.version>
27   </properties>
28
29   <dependencies>
30     <dependency>
31       <groupId>${project.groupId}</groupId>
32       <artifactId>elanmanager-api</artifactId>
33       <version>${vpnservices.version}</version>
34     </dependency>
35     <dependency>
36       <groupId>${project.groupId}</groupId>
37       <artifactId>mdsalutil-api</artifactId>
38       <version>${vpnservices.version}</version>
39     </dependency>
40     <dependency>
41       <groupId>${project.groupId}</groupId>
42       <artifactId>interfacemgr-api</artifactId>
43       <version>${vpnservices.version}</version>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.vpnservice</groupId>
47       <artifactId>idmanager-api</artifactId>
48       <version>${vpnservices.version}</version>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.vpnservice</groupId>
52       <artifactId>itm-api</artifactId>
53       <version>${vpnservices.version}</version>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.vpnservice</groupId>
57       <artifactId>neutronvpn-api</artifactId>
58       <version>${vpnservices.version}</version>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>sal-binding-broker-impl</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.ovsdb</groupId>
66       <artifactId>hwvtepsouthbound-api</artifactId>
67       <version>${vpns.ovsdb.version}</version>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.neutron</groupId>
71       <artifactId>model</artifactId>
72       <version>${neutron.version}</version>
73     </dependency>
74     <dependency>
75       <groupId>org.apache.karaf.shell</groupId>
76       <artifactId>org.apache.karaf.shell.console</artifactId>
77       <version>3.0.3</version>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.vpnservice</groupId>
81       <artifactId>interfacemgr-impl</artifactId>
82       <version>${vpnservices.version}</version>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.vpnservice</groupId>
86       <artifactId>dhcpservice-api</artifactId>
87       <version>${vpnservices.version}</version>
88     </dependency>
89
90       <!--  Only for unit-test -->
91    <dependency>
92         <groupId>org.mockito</groupId>
93         <artifactId>mockito-all</artifactId>
94         <version>${mockitoall.version}</version>
95         <scope>test</scope>
96     </dependency>
97     <dependency>
98         <groupId>org.powermock</groupId>
99         <artifactId>powermock-api-mockito</artifactId>
100         <version>${powermock.version}</version>
101         <scope>test</scope>
102     </dependency>
103     <dependency>
104         <groupId>org.powermock</groupId>
105         <artifactId>powermock-module-junit4</artifactId>
106         <version>${powermock.version}</version>
107         <scope>test</scope>
108     </dependency>
109       <dependency>
110           <groupId>org.opendaylight.controller</groupId>
111           <artifactId>sal-binding-broker-impl</artifactId>
112           <scope>test</scope>
113       </dependency>
114       <dependency>
115           <groupId>org.opendaylight.controller</groupId>
116           <artifactId>sal-binding-broker-impl</artifactId>
117           <version>${mdsal.version}</version>
118           <scope>test</scope>
119           <type>test-jar</type>
120       </dependency>
121       <dependency>
122           <groupId>org.slf4j</groupId>
123           <artifactId>slf4j-simple</artifactId>
124           <scope>test</scope>
125       </dependency>
126   </dependencies>
127 </project>