Merge "Extract neutron-utils from mdsal-utils"
[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.4.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>openstack.net-virt</artifactId>
23   <version>1.2.1-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.6.0-SNAPSHOT</neutron.model.version>
49     <ovsdb.utils.config.version>1.2.1-SNAPSHOT</ovsdb.utils.config.version>
50     <ovsdb.utils.servicehelper.version>1.2.1-SNAPSHOT</ovsdb.utils.servicehelper.version>
51     <powermock.version>1.5.2</powermock.version>
52     <sonar.jacoco.itReportPath>../net-virt-it/target/jacoco-it.exec</sonar.jacoco.itReportPath>
53   </properties>
54
55   <dependencyManagement>
56     <dependencies>
57       <dependency>
58         <groupId>org.opendaylight.mdsal</groupId>
59         <artifactId>mdsal-artifacts</artifactId>
60         <version>2.0.0-SNAPSHOT</version>
61         <type>pom</type>
62         <scope>import</scope>
63       </dependency>
64       <dependency>
65         <groupId>org.opendaylight.mdsal.model</groupId>
66         <artifactId>mdsal-model-artifacts</artifactId>
67         <version>0.8.0-SNAPSHOT</version>
68         <type>pom</type>
69         <scope>import</scope>
70       </dependency>
71     </dependencies>
72   </dependencyManagement>
73
74   <dependencies>
75     <dependency>
76       <groupId>org.apache.commons</groupId>
77       <artifactId>commons-lang3</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.osgi</groupId>
81       <artifactId>org.osgi.core</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>com.google.guava</groupId>
85       <artifactId>guava</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.controller</groupId>
89       <artifactId>config-api</artifactId>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.controller</groupId>
93       <artifactId>sal-binding-api</artifactId>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.controller</groupId>
97       <artifactId>sal-binding-config</artifactId>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.controller</groupId>
101       <artifactId>sal-common-api</artifactId>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.ovsdb</groupId>
105       <artifactId>southbound-api</artifactId>
106       <version>1.2.1-SNAPSHOT</version>
107     </dependency>
108     <dependency>
109       <groupId>org.opendaylight.neutron</groupId>
110       <artifactId>model</artifactId>
111       <version>${neutron.model.version}</version>
112     </dependency>
113     <dependency>
114       <groupId>org.opendaylight.ovsdb</groupId>
115       <artifactId>utils.config</artifactId>
116       <version>${ovsdb.utils.config.version}</version>
117     </dependency>
118     <dependency>
119       <groupId>org.opendaylight.ovsdb</groupId>
120       <artifactId>utils.servicehelper</artifactId>
121       <version>${ovsdb.utils.servicehelper.version}</version>
122     </dependency>
123     <dependency>
124       <groupId>${project.groupId}</groupId>
125       <artifactId>utils.mdsal-utils</artifactId>
126       <version>${project.version}</version>
127     </dependency>
128     <dependency>
129       <groupId>${project.groupId}</groupId>
130       <artifactId>utils.neutron-utils</artifactId>
131       <version>${project.version}</version>
132     </dependency>
133     <dependency>
134       <groupId>org.opendaylight.yangtools</groupId>
135       <artifactId>yang-common</artifactId>
136     </dependency>
137     <dependency>
138       <groupId>org.opendaylight.yangtools</groupId>
139       <artifactId>concepts</artifactId>
140     </dependency>
141     <dependency>
142       <groupId>org.opendaylight.mdsal.model</groupId>
143       <artifactId>ietf-inet-types</artifactId>
144     </dependency>
145     <dependency>
146       <groupId>org.opendaylight.mdsal.model</groupId>
147       <artifactId>ietf-topology</artifactId>
148     </dependency>
149     <dependency>
150       <groupId>org.opendaylight.mdsal.model</groupId>
151       <artifactId>opendaylight-l2-types</artifactId>
152     </dependency>
153     <dependency>
154       <groupId>org.opendaylight.mdsal.model</groupId>
155       <artifactId>ietf-yang-types-20130715</artifactId>
156     </dependency>
157     <dependency>
158       <groupId>org.opendaylight.mdsal.model</groupId>
159       <artifactId>ietf-yang-types</artifactId>
160     </dependency>
161     <dependency>
162       <groupId>commons-net</groupId>
163       <artifactId>commons-net</artifactId>
164     </dependency>
165     <dependency>
166       <groupId>org.slf4j</groupId>
167       <artifactId>slf4j-api</artifactId>
168     </dependency>
169     <dependency>
170       <groupId>org.mockito</groupId>
171       <artifactId>mockito-core</artifactId>
172       <scope>test</scope>
173     </dependency>
174     <dependency>
175       <groupId>org.powermock</groupId>
176       <artifactId>powermock-core</artifactId>
177       <version>${powermock.version}</version>
178       <scope>test</scope>
179     </dependency>
180     <dependency>
181       <groupId>org.powermock</groupId>
182       <artifactId>powermock-module-junit4</artifactId>
183       <version>${powermock.version}</version>
184       <scope>test</scope>
185     </dependency>
186     <dependency>
187       <groupId>org.powermock</groupId>
188       <artifactId>powermock-api-mockito</artifactId>
189       <version>${powermock.version}</version>
190       <scope>test</scope>
191     </dependency>
192     <dependency>
193       <groupId>org.powermock</groupId>
194       <artifactId>powermock-api-support</artifactId>
195       <version>${powermock.version}</version>
196       <scope>test</scope>
197     </dependency>
198     <dependency>
199       <groupId>org.powermock</groupId>
200       <artifactId>powermock-reflect</artifactId>
201       <version>${powermock.version}</version>
202       <scope>test</scope>
203     </dependency>
204     <dependency>
205       <groupId>junit</groupId>
206       <artifactId>junit</artifactId>
207       <scope>test</scope>
208     </dependency>
209     <dependency>
210       <groupId>org.codehaus.sonar-plugins.java</groupId>
211       <artifactId>sonar-jacoco-listeners</artifactId>
212       <version>${sonar-jacoco-listeners.version}</version>
213       <scope>test</scope>
214     </dependency>
215     <dependency>
216       <groupId>org.slf4j</groupId>
217       <artifactId>slf4j-simple</artifactId>
218       <scope>test</scope>
219     </dependency>
220   </dependencies>
221   <build>
222     <plugins>
223       <plugin>
224         <groupId>org.apache.felix</groupId>
225         <artifactId>maven-bundle-plugin</artifactId>
226         <extensions>true</extensions>
227         <configuration>
228           <instructions>
229             <Embed-Dependency>utils.config;type=!pom;inline=false</Embed-Dependency>
230             <Embed-Transitive>true</Embed-Transitive>
231             <Export-Package>
232               org.opendaylight.ovsdb.openstack.netvirt.translator,
233               org.opendaylight.ovsdb.openstack.netvirt.api,
234               org.opendaylight.ovsdb.openstack.netvirt
235             </Export-Package>
236           </instructions>
237         </configuration>
238       </plugin>
239       <plugin>
240         <groupId>org.apache.maven.plugins</groupId>
241         <artifactId>maven-checkstyle-plugin</artifactId>
242       </plugin>
243       <plugin>
244         <groupId>org.apache.maven.plugins</groupId>
245         <artifactId>maven-surefire-plugin</artifactId>
246         <configuration>
247           <properties>
248             <property>
249               <name>listener</name>
250               <value>org.sonar.java.jacoco.JUnitListener</value>
251             </property>
252           </properties>
253         </configuration>
254       </plugin>
255       <plugin>
256         <groupId>org.jacoco</groupId>
257         <artifactId>jacoco-maven-plugin</artifactId>
258       </plugin>
259     </plugins>
260   </build>
261 </project>