Merge "Attempt to fix report in sonar for test coverage"
[netvirt.git] / features / 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.odlparent</groupId>
16     <artifactId>features-parent</artifactId>
17     <version>1.6.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>features-ovsdb</artifactId>
23   <version>1.2.1-SNAPSHOT</version>
24   <packaging>pom</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     <odl.karaf.base.version>1.6.0-SNAPSHOT</odl.karaf.base.version>
49     <mdsal.version>1.3.0-SNAPSHOT</mdsal.version>
50     <neutron.version>0.6.0-SNAPSHOT</neutron.version>
51     <openflowplugin.version>0.2.0-SNAPSHOT</openflowplugin.version>
52     <yangtools.version>0.8.0-SNAPSHOT</yangtools.version>
53     <dlux.version>0.3.0-SNAPSHOT</dlux.version>
54   </properties>
55
56   <dependencyManagement>
57     <dependencies>
58       <dependency>
59         <groupId>org.opendaylight.yangtools</groupId>
60         <artifactId>yangtools-artifacts</artifactId>
61         <version>${yangtools.version}</version>
62         <type>pom</type>
63         <scope>import</scope>
64       </dependency>
65       <dependency>
66         <groupId>org.opendaylight.controller</groupId>
67         <artifactId>mdsal-artifacts</artifactId>
68         <version>${mdsal.version}</version>
69         <type>pom</type>
70         <scope>import</scope>
71       </dependency>
72     </dependencies>
73   </dependencyManagement>
74   <dependencies>
75     <!-- controller dependencies -->
76     <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>features-mdsal</artifactId>
79       <type>xml</type>
80       <classifier>features</classifier>
81     </dependency>
82     <!-- external dependencies -->
83     <!-- TODO clean up based on what is provided by odlparent -->
84     <dependency>
85       <groupId>org.osgi</groupId>
86       <artifactId>org.osgi.compendium</artifactId>
87       <scope>provided</scope>
88     </dependency>
89     <dependency>
90       <groupId>org.osgi</groupId>
91       <artifactId>org.osgi.core</artifactId>
92       <scope>provided</scope>
93     </dependency>
94     <dependency>
95       <groupId>org.apache.felix</groupId>
96       <artifactId>org.apache.felix.dependencymanager</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>com.fasterxml.jackson.core</groupId>
100       <artifactId>jackson-annotations</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>com.fasterxml.jackson.core</groupId>
104       <artifactId>jackson-core</artifactId>
105     </dependency>
106     <dependency>
107       <groupId>com.fasterxml.jackson.core</groupId>
108       <artifactId>jackson-databind</artifactId>
109     </dependency>
110     <dependency>
111       <groupId>com.google.guava</groupId>
112       <artifactId>guava</artifactId>
113     </dependency>
114     <dependency>
115       <groupId>org.apache.commons</groupId>
116       <artifactId>commons-lang3</artifactId>
117     </dependency>
118     <dependency>
119       <groupId>io.netty</groupId>
120       <artifactId>netty-buffer</artifactId>
121     </dependency>
122     <dependency>
123       <groupId>io.netty</groupId>
124       <artifactId>netty-codec</artifactId>
125     </dependency>
126     <dependency>
127       <groupId>io.netty</groupId>
128       <artifactId>netty-codec-http</artifactId>
129     </dependency>
130     <dependency>
131       <groupId>io.netty</groupId>
132       <artifactId>netty-common</artifactId>
133     </dependency>
134     <dependency>
135       <groupId>io.netty</groupId>
136       <artifactId>netty-handler</artifactId>
137     </dependency>
138     <dependency>
139       <groupId>io.netty</groupId>
140       <artifactId>netty-transport</artifactId>
141     </dependency>
142     <dependency>
143       <groupId>equinoxSDK381</groupId>
144       <artifactId>javax.servlet</artifactId>
145     </dependency>
146     <dependency>
147       <groupId>equinoxSDK381</groupId>
148       <artifactId>javax.servlet.jsp</artifactId>
149     </dependency>
150     <dependency>
151       <groupId>equinoxSDK381</groupId>
152       <artifactId>org.apache.felix.gogo.command</artifactId>
153     </dependency>
154     <dependency>
155       <groupId>equinoxSDK381</groupId>
156       <artifactId>org.apache.felix.gogo.runtime</artifactId>
157     </dependency>
158     <dependency>
159       <groupId>equinoxSDK381</groupId>
160       <artifactId>org.apache.felix.gogo.shell</artifactId>
161     </dependency>
162     <dependency>
163       <groupId>equinoxSDK381</groupId>
164       <artifactId>org.eclipse.equinox.cm</artifactId>
165     </dependency>
166     <dependency>
167       <groupId>equinoxSDK381</groupId>
168       <artifactId>org.eclipse.equinox.console</artifactId>
169     </dependency>
170     <dependency>
171       <groupId>equinoxSDK381</groupId>
172       <artifactId>org.eclipse.equinox.ds</artifactId>
173     </dependency>
174     <dependency>
175       <groupId>equinoxSDK381</groupId>
176       <artifactId>org.eclipse.equinox.launcher</artifactId>
177     </dependency>
178     <dependency>
179       <groupId>equinoxSDK381</groupId>
180       <artifactId>org.eclipse.equinox.util</artifactId>
181     </dependency>
182     <dependency>
183       <groupId>equinoxSDK381</groupId>
184       <artifactId>org.eclipse.osgi</artifactId>
185     </dependency>
186     <dependency>
187       <groupId>equinoxSDK381</groupId>
188       <artifactId>org.eclipse.osgi.services</artifactId>
189     </dependency>
190     <dependency>
191       <groupId>com.google.code.gson</groupId>
192       <artifactId>gson</artifactId>
193     </dependency>
194     <!-- neutron dependencies -->
195     <dependency>
196       <groupId>org.opendaylight.neutron</groupId>
197       <artifactId>features-neutron</artifactId>
198       <version>${neutron.version}</version>
199       <classifier>features</classifier>
200       <type>xml</type>
201     </dependency>
202      <dependency>
203       <groupId>org.opendaylight.neutron</groupId>
204       <artifactId>dummyprovider</artifactId>
205       <version>${neutron.version}</version>
206     </dependency>
207     <!-- openflowplugin dependencies -->
208     <dependency>
209       <groupId>org.opendaylight.openflowplugin</groupId>
210       <artifactId>features-openflowplugin</artifactId>
211       <version>${openflowplugin.version}</version>
212       <classifier>features</classifier>
213       <type>xml</type>
214     </dependency>
215     <dependency>
216       <groupId>org.opendaylight.openflowplugin</groupId>
217       <artifactId>features-openflowplugin-extension</artifactId>
218       <version>${openflowplugin.version}</version>
219       <classifier>features</classifier>
220       <type>xml</type>
221     </dependency>
222     <!-- project specific dependencies -->
223     <dependency>
224       <groupId>${project.groupId}</groupId>
225       <artifactId>openstack.net-virt</artifactId>
226       <version>${project.version}</version>
227     </dependency>
228     <dependency>
229       <groupId>${project.groupId}</groupId>
230       <artifactId>openstack.net-virt</artifactId>
231       <version>${project.version}</version>
232       <type>xml</type>
233       <classifier>config</classifier>
234     </dependency>
235     <dependency>
236       <groupId>${project.groupId}</groupId>
237       <artifactId>openstack.net-virt-providers</artifactId>
238       <version>${project.version}</version>
239     </dependency>
240     <dependency>
241       <groupId>${project.groupId}</groupId>
242       <artifactId>openstack.net-virt-providers</artifactId>
243       <version>${project.version}</version>
244       <type>xml</type>
245       <classifier>config</classifier>
246     </dependency>
247     <dependency>
248       <groupId>${project.groupId}</groupId>
249       <artifactId>schema.openvswitch</artifactId>
250       <version>${project.version}</version>
251     </dependency>
252     <dependency>
253       <groupId>${project.groupId}</groupId>
254       <artifactId>schema.hardwarevtep</artifactId>
255       <version>${project.version}</version>
256     </dependency>
257     <dependency>
258       <groupId>${project.groupId}</groupId>
259       <artifactId>utils.servicehelper</artifactId>
260       <version>${project.version}</version>
261     </dependency>
262     <dependency>
263       <groupId>${project.groupId}</groupId>
264       <artifactId>utils.mdsal-utils</artifactId>
265       <version>${project.version}</version>
266     </dependency>
267     <dependency>
268       <groupId>${project.groupId}</groupId>
269       <artifactId>ovsdb-ui-bundle</artifactId>
270       <version>${project.version}</version>
271     </dependency>
272     <dependency>
273       <groupId>${project.groupId}</groupId>
274       <artifactId>southbound-features</artifactId>
275       <version>${project.version}</version>
276       <type>xml</type>
277       <classifier>features</classifier>
278     </dependency>
279     <dependency>
280       <groupId>${project.groupId}</groupId>
281       <artifactId>library-features</artifactId>
282       <version>${project.version}</version>
283       <type>xml</type>
284       <classifier>features</classifier>
285     </dependency>
286     <!-- DLUX dependency for the UI -->
287     <dependency>
288       <groupId>org.opendaylight.dlux</groupId>
289       <artifactId>features-dlux</artifactId>
290       <version>${dlux.version}</version>
291       <classifier>features</classifier>
292       <type>xml</type>
293     </dependency>
294   </dependencies>
295 </project>