3cead70d00aa51158285685c772ffae7f857fa87
[unimgr.git] / netvirt / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2016 Hewlett Packard Enterprise, Co. and others. All rights
3   reserved. This program and the accompanying materials are made available
4   under the terms of the Eclipse Public License v1.0 which accompanies this
5   distribution, and is available at http://www.eclipse.org/legal/epl-v10.html -->
6
7 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9
10   <parent>
11     <groupId>org.opendaylight.controller</groupId>
12     <artifactId>config-parent</artifactId>
13     <version>0.6.0-SNAPSHOT</version>
14     <relativePath />
15   </parent>
16
17   <properties>
18     <genius.version>0.2.0-SNAPSHOT</genius.version>
19     <vpnservices.version>0.4.0-SNAPSHOT</vpnservices.version>
20   </properties>
21
22   <modelVersion>4.0.0</modelVersion>
23   <groupId>org.opendaylight.unimgr</groupId>
24   <artifactId>unimgr-netvirt</artifactId>
25   <version>0.2.0-SNAPSHOT</version>
26   <packaging>bundle</packaging>
27   <!-- <name> formatting is used by autorelease to parse and notify projects on
28        build failure. Please do not modify this unless you have a good reason. -->
29   <name>ODL :: unimgr :: ${project.artifactId}</name>
30   
31   <build>
32     <plugins>
33       <plugin>
34         <groupId>org.apache.maven.plugins</groupId>
35         <artifactId>maven-compiler-plugin</artifactId>
36         <configuration>
37           <source>1.8</source>
38           <target>1.8</target>
39         </configuration>
40       </plugin>
41       <plugin>
42         <groupId>org.apache.felix</groupId>
43         <artifactId>maven-bundle-plugin</artifactId>
44         <configuration>
45           <instructions>
46             <Import-Package>
47               *
48             </Import-Package>
49             <Export-Package>
50                 org.opendaylight.unimgr.mef.netvirt
51             </Export-Package>
52           </instructions>
53         </configuration>
54       </plugin>
55     </plugins>
56   </build>
57
58   <dependencies>
59     <dependency>
60       <groupId>${project.groupId}</groupId>
61       <artifactId>unimgr-api</artifactId>
62       <version>${project.version}</version>
63     </dependency>
64     <dependency>
65       <groupId>${project.groupId}</groupId>
66       <artifactId>unimgr-impl</artifactId>
67       <version>${project.version}</version>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.netvirt</groupId>
71       <artifactId>elanmanager-api</artifactId>
72       <version>${vpnservices.version}</version>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.netvirt</groupId>
76       <artifactId>elanmanager-impl</artifactId>
77       <version>${vpnservices.version}</version>
78     </dependency>
79      <dependency>
80       <groupId>org.opendaylight.genius</groupId>
81       <artifactId>arputil-api</artifactId>
82       <version>${genius.version}</version>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.netvirt</groupId>
86       <artifactId>vpnmanager-api</artifactId>
87       <version>${vpnservices.version}</version>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.unimgr</groupId>
91       <artifactId>unimgr-legato-api</artifactId>
92       <version>${project.version}</version>
93     </dependency>
94
95     <!-- Testing Dependencies -->
96     <dependency>
97       <groupId>junit</groupId>
98       <artifactId>junit</artifactId>
99       <scope>test</scope>
100     </dependency>
101
102     <dependency>
103       <groupId>org.mockito</groupId>
104       <artifactId>mockito-core</artifactId>
105       <scope>test</scope>
106     </dependency>
107
108     <dependency>
109       <groupId>org.powermock</groupId>
110       <artifactId>powermock-core</artifactId>
111       <scope>test</scope>
112     </dependency>
113     <dependency>
114       <groupId>org.powermock</groupId>
115       <artifactId>powermock-module-junit4</artifactId>
116       <scope>test</scope>
117     </dependency>
118     <dependency>
119       <groupId>org.powermock</groupId>
120       <artifactId>powermock-api-mockito</artifactId>
121       <scope>test</scope>
122     </dependency>
123     <dependency>
124       <groupId>org.powermock</groupId>
125       <artifactId>powermock-api-support</artifactId>
126       <scope>test</scope>
127     </dependency>
128     <dependency>
129       <groupId>org.powermock</groupId>
130       <artifactId>powermock-reflect</artifactId>
131       <scope>test</scope>
132     </dependency>
133     <dependency>
134       <groupId>org.opendaylight.mdsal.model</groupId>
135       <artifactId>ietf-yang-types-20130715</artifactId>
136     </dependency>
137     <dependency>
138       <groupId>com.google.guava</groupId>
139       <artifactId>guava</artifactId>
140     </dependency>
141     <dependency>
142       <groupId>commons-net</groupId>
143       <artifactId>commons-net</artifactId>
144     </dependency>
145   </dependencies>
146 </project>