Merge "Switch from fig to docker-compose"
[netvirt.git] / openstack / net-virt / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2014 Red Hat, Inc. 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"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.controller</groupId>
16     <artifactId>config-parent</artifactId>
17     <version>0.5.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>openstack.net-virt</artifactId>
23   <version>1.3.0-SNAPSHOT</version>
24   <packaging>bundle</packaging>
25   <description>The OVSDB Plugin integration project is a project for OpenDaylight that will implement the Open vSwitch Database RFC 7047 management protocol allowing the Southbound configuration of vSwitches and a network virtualization implementation.</description>
26   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
27   <licenses>
28     <license>
29       <name>Eclipse Public License v1.0</name>
30       <url>http://www.eclipse.org/legal/epl-v10.html</url>
31     </license>
32   </licenses>
33   <developers>
34     <developer>
35       <name>Sam Hague</name>
36       <email>shague@gmail.com</email>
37       <url>https://github.com/shague</url>
38     </developer>
39   </developers>
40   <scm>
41     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
42     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
43     <tag>HEAD</tag>
44     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
45   </scm>
46
47   <properties>
48     <neutron.model.version>0.7.0-SNAPSHOT</neutron.model.version>
49     <sonar.jacoco.itReportPath>../net-virt-it/target/jacoco-it.exec</sonar.jacoco.itReportPath>
50   </properties>
51
52   <dependencies>
53     <!-- project specific dependencies -->
54     <dependency>
55       <groupId>${project.groupId}</groupId>
56       <artifactId>southbound-api</artifactId>
57       <version>${project.version}</version>
58     </dependency>
59     <dependency>
60       <groupId>${project.groupId}</groupId>
61       <artifactId>utils.config</artifactId>
62       <version>${project.version}</version>
63     </dependency>
64     <dependency>
65       <groupId>${project.groupId}</groupId>
66       <artifactId>utils.servicehelper</artifactId>
67       <version>${project.version}</version>
68     </dependency>
69     <dependency>
70       <groupId>${project.groupId}</groupId>
71       <artifactId>utils.mdsal-utils</artifactId>
72       <version>${project.version}</version>
73     </dependency>
74     <dependency>
75       <groupId>${project.groupId}</groupId>
76       <artifactId>utils.neutron-utils</artifactId>
77       <version>${project.version}</version>
78     </dependency>
79     <!-- neutron dependencies -->
80     <dependency>
81       <groupId>org.opendaylight.neutron</groupId>
82       <artifactId>model</artifactId>
83       <version>${neutron.model.version}</version>
84     </dependency>
85     <!-- mdsal dependencies -->
86     <dependency>
87       <groupId>org.opendaylight.mdsal.model</groupId>
88       <artifactId>ietf-inet-types</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.mdsal.model</groupId>
92       <artifactId>ietf-topology</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.mdsal.model</groupId>
96       <artifactId>opendaylight-l2-types</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.mdsal.model</groupId>
100       <artifactId>ietf-yang-types-20130715</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.mdsal.model</groupId>
104       <artifactId>ietf-yang-types</artifactId>
105     </dependency>
106     <!-- external dependencies -->
107    <dependency>
108       <groupId>commons-net</groupId>
109       <artifactId>commons-net</artifactId>
110     </dependency>
111     <dependency>
112       <groupId>org.codehaus.sonar-plugins.java</groupId>
113       <artifactId>sonar-jacoco-listeners</artifactId>
114       <version>${sonar-jacoco-listeners.version}</version>
115       <scope>test</scope>
116     </dependency>
117     <dependency>
118       <groupId>org.slf4j</groupId>
119       <artifactId>slf4j-simple</artifactId>
120       <scope>test</scope>
121     </dependency>
122     <!-- testing dependencies -->
123     <dependency>
124       <groupId>org.mockito</groupId>
125       <artifactId>mockito-core</artifactId>
126       <version>1.10.19</version>
127       <scope>test</scope>
128     </dependency>
129     <dependency>
130       <groupId>org.powermock</groupId>
131       <artifactId>powermock-core</artifactId>
132       <scope>test</scope>
133     </dependency>
134     <dependency>
135       <groupId>org.powermock</groupId>
136       <artifactId>powermock-module-junit4</artifactId>
137       <scope>test</scope>
138     </dependency>
139     <dependency>
140       <groupId>org.powermock</groupId>
141       <artifactId>powermock-api-mockito</artifactId>
142       <scope>test</scope>
143     </dependency>
144     <dependency>
145       <groupId>org.powermock</groupId>
146       <artifactId>powermock-api-support</artifactId>
147       <scope>test</scope>
148     </dependency>
149     <dependency>
150       <groupId>org.powermock</groupId>
151       <artifactId>powermock-reflect</artifactId>
152       <scope>test</scope>
153     </dependency>
154     <dependency>
155       <groupId>junit</groupId>
156       <artifactId>junit</artifactId>
157       <scope>test</scope>
158     </dependency>
159     <dependency>
160       <groupId>org.opendaylight.controller</groupId>
161       <artifactId>sal-binding-broker-impl</artifactId>
162       <type>test-jar</type>
163       <scope>test</scope>
164     </dependency>
165   </dependencies>
166   <build>
167     <plugins>
168       <plugin>
169         <groupId>org.apache.felix</groupId>
170         <artifactId>maven-bundle-plugin</artifactId>
171         <extensions>true</extensions>
172         <configuration>
173           <instructions>
174             <Embed-Dependency>utils.config;type=!pom;inline=false</Embed-Dependency>
175             <Embed-Transitive>true</Embed-Transitive>
176             <Export-Package>
177               org.opendaylight.ovsdb.openstack.netvirt.translator,
178               org.opendaylight.ovsdb.openstack.netvirt.api,
179               org.opendaylight.ovsdb.openstack.netvirt
180             </Export-Package>
181           </instructions>
182         </configuration>
183       </plugin>
184       <plugin>
185         <groupId>org.apache.maven.plugins</groupId>
186         <artifactId>maven-surefire-plugin</artifactId>
187         <configuration>
188           <properties>
189             <property>
190               <name>listener</name>
191               <value>org.sonar.java.jacoco.JUnitListener</value>
192             </property>
193           </properties>
194         </configuration>
195       </plugin>
196       <plugin>
197         <groupId>org.jacoco</groupId>
198         <artifactId>jacoco-maven-plugin</artifactId>
199         <executions>
200           <execution>
201             <id>default-instrument</id>
202             <goals>
203               <goal>instrument</goal>
204             </goals>
205           </execution>
206           <execution>
207             <id>default-restore-instrumented-classes</id>
208             <goals>
209               <goal>restore-instrumented-classes</goal>
210             </goals>
211           </execution>
212         </executions>
213       </plugin>
214     </plugins>
215   </build>
216 </project>