Add blueprint wiring for openstack/net-virt
[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.7.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.netvirt</groupId>
22   <artifactId>features-netvirt</artifactId>
23   <version>1.3.0-SNAPSHOT</version>
24   <packaging>jar</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   <licenses>
27     <license>
28       <name>Eclipse Public License v1.0</name>
29       <url>http://www.eclipse.org/legal/epl-v10.html</url>
30     </license>
31   </licenses>
32   <developers>
33     <developer>
34       <name>Sam Hague</name>
35       <email>shague@gmail.com</email>
36       <url>https://github.com/shague</url>
37     </developer>
38   </developers>
39   <scm>
40     <connection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</connection>
41     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
42     <tag>HEAD</tag>
43     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
44   </scm>
45
46   <properties>
47     <dlux.version>0.4.0-SNAPSHOT</dlux.version>
48     <controller.mdsal.version>1.4.0-SNAPSHOT</controller.mdsal.version>
49     <mdsal.model.version>0.9.0-SNAPSHOT</mdsal.model.version>
50     <neutron.version>0.7.0-SNAPSHOT</neutron.version>
51     <odl.karaf.base.version>1.7.0-SNAPSHOT</odl.karaf.base.version>
52     <openflowplugin.version>0.3.0-SNAPSHOT</openflowplugin.version>
53     <ovsdb.version>1.3.0-SNAPSHOT</ovsdb.version>
54     <restconf.version>1.4.0-SNAPSHOT</restconf.version>
55     <yangtools.version>1.0.0-SNAPSHOT</yangtools.version>
56   </properties>
57
58   <dependencies>
59     <dependency>
60       <groupId>org.opendaylight.controller</groupId>
61       <artifactId>features-mdsal</artifactId>
62       <version>${controller.mdsal.version}</version>
63       <type>xml</type>
64       <classifier>features</classifier>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.mdsal.model</groupId>
68       <artifactId>features-mdsal-model</artifactId>
69       <version>${mdsal.model.version}</version>
70       <classifier>features</classifier>
71       <type>xml</type>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.netconf</groupId>
75       <artifactId>features-restconf</artifactId>
76       <version>${restconf.version}</version>
77       <classifier>features</classifier>
78       <type>xml</type>
79     </dependency>
80     <!-- TODO clean up based on what is provided by odlparent -->
81     <dependency>
82       <groupId>org.osgi</groupId>
83       <artifactId>org.osgi.compendium</artifactId>
84       <scope>provided</scope>
85     </dependency>
86     <dependency>
87       <groupId>org.osgi</groupId>
88       <artifactId>org.osgi.core</artifactId>
89       <scope>provided</scope>
90     </dependency>
91     <dependency>
92       <groupId>org.apache.felix</groupId>
93       <artifactId>org.apache.felix.dependencymanager</artifactId>
94     </dependency>
95     <dependency>
96       <groupId>com.fasterxml.jackson.core</groupId>
97       <artifactId>jackson-annotations</artifactId>
98     </dependency>
99     <dependency>
100       <groupId>com.fasterxml.jackson.core</groupId>
101       <artifactId>jackson-core</artifactId>
102     </dependency>
103     <dependency>
104       <groupId>com.fasterxml.jackson.core</groupId>
105       <artifactId>jackson-databind</artifactId>
106     </dependency>
107     <dependency>
108       <groupId>com.google.guava</groupId>
109       <artifactId>guava</artifactId>
110     </dependency>
111     <dependency>
112       <groupId>commons-net</groupId>
113       <artifactId>commons-net</artifactId>
114     </dependency>
115     <dependency>
116       <groupId>org.apache.commons</groupId>
117       <artifactId>commons-lang3</artifactId>
118     </dependency>
119     <dependency>
120       <groupId>io.netty</groupId>
121       <artifactId>netty-buffer</artifactId>
122     </dependency>
123     <dependency>
124       <groupId>io.netty</groupId>
125       <artifactId>netty-codec</artifactId>
126     </dependency>
127     <dependency>
128       <groupId>io.netty</groupId>
129       <artifactId>netty-codec-http</artifactId>
130     </dependency>
131     <dependency>
132       <groupId>io.netty</groupId>
133       <artifactId>netty-common</artifactId>
134     </dependency>
135     <dependency>
136       <groupId>io.netty</groupId>
137       <artifactId>netty-handler</artifactId>
138     </dependency>
139     <dependency>
140       <groupId>io.netty</groupId>
141       <artifactId>netty-transport</artifactId>
142     </dependency>
143     <dependency>
144       <groupId>com.google.code.gson</groupId>
145       <artifactId>gson</artifactId>
146     </dependency>
147     <dependency>
148       <groupId>org.opendaylight.neutron</groupId>
149       <artifactId>features-neutron</artifactId>
150       <version>${neutron.version}</version>
151       <classifier>features</classifier>
152       <type>xml</type>
153     </dependency>
154     <dependency>
155       <groupId>org.opendaylight.openflowplugin</groupId>
156       <artifactId>features-openflowplugin</artifactId>
157       <version>${openflowplugin.version}</version>
158       <classifier>features</classifier>
159       <type>xml</type>
160     </dependency>
161     <dependency>
162       <groupId>org.opendaylight.openflowplugin</groupId>
163       <artifactId>features-openflowplugin-extension</artifactId>
164       <version>${openflowplugin.version}</version>
165       <classifier>features</classifier>
166       <type>xml</type>
167     </dependency>
168     <dependency>
169       <groupId>${project.groupId}</groupId>
170       <artifactId>openstack.net-virt</artifactId>
171       <version>${project.version}</version>
172     </dependency>
173     <dependency>
174       <groupId>${project.groupId}</groupId>
175       <artifactId>openstack.net-virt-providers</artifactId>
176       <version>${project.version}</version>
177     </dependency>
178     <dependency>
179       <groupId>${project.groupId}</groupId>
180       <artifactId>openstack.net-virt-providers</artifactId>
181       <version>${project.version}</version>
182       <type>xml</type>
183       <classifier>config</classifier>
184     </dependency>
185     <dependency>
186       <groupId>org.opendaylight.ovsdb</groupId>
187       <artifactId>schema.openvswitch</artifactId>
188       <version>${ovsdb.version}</version>
189     </dependency>
190     <dependency>
191       <groupId>org.opendaylight.ovsdb</groupId>
192       <artifactId>schema.hardwarevtep</artifactId>
193       <version>${ovsdb.version}</version>
194     </dependency>
195     <dependency>
196       <groupId>${project.groupId}</groupId>
197       <artifactId>utils.servicehelper</artifactId>
198       <version>${project.version}</version>
199     </dependency>
200     <dependency>
201       <groupId>${project.groupId}</groupId>
202       <artifactId>utils.mdsal-utils</artifactId>
203       <version>${project.version}</version>
204     </dependency>
205     <dependency>
206       <groupId>org.opendaylight.ovsdb</groupId>
207       <artifactId>utils.mdsal-utils</artifactId>
208       <version>${ovsdb.version}</version>
209     </dependency>
210     <dependency>
211       <groupId>${project.groupId}</groupId>
212       <artifactId>ovsdb-ui-bundle</artifactId>
213       <version>${project.version}</version>
214     </dependency>
215     <dependency>
216       <groupId>org.opendaylight.ovsdb</groupId>
217       <artifactId>southbound-features</artifactId>
218       <version>${ovsdb.version}</version>
219       <type>xml</type>
220       <classifier>features</classifier>
221     </dependency>
222     <dependency>
223       <groupId>${project.groupId}</groupId>
224       <artifactId>netvirt-api</artifactId>
225       <version>${project.version}</version>
226     </dependency>
227     <dependency>
228       <groupId>${project.groupId}</groupId>
229       <artifactId>hwgw</artifactId>
230       <version>${project.version}</version>
231     </dependency>
232     <dependency>
233       <groupId>${project.groupId}</groupId>
234       <artifactId>hwgw</artifactId>
235       <version>${project.version}</version>
236       <type>xml</type>
237       <classifier>config</classifier>
238     </dependency>
239     <dependency>
240       <groupId>org.opendaylight.ovsdb</groupId>
241       <artifactId>hwvtepsouthbound-features</artifactId>
242       <version>${ovsdb.version}</version>
243       <type>xml</type>
244       <classifier>features</classifier>
245     </dependency>
246     <dependency>
247       <groupId>${project.groupId}</groupId>
248       <artifactId>neutron</artifactId>
249       <version>${project.version}</version>
250     </dependency>
251     <dependency>
252       <groupId>${project.groupId}</groupId>
253       <artifactId>neutron</artifactId>
254       <version>${project.version}</version>
255       <type>xml</type>
256       <classifier>config</classifier>
257     </dependency>
258     <dependency>
259       <groupId>org.opendaylight.dlux</groupId>
260       <artifactId>features-dlux</artifactId>
261       <version>${dlux.version}</version>
262       <classifier>features</classifier>
263       <type>xml</type>
264     </dependency>
265     <dependency>
266       <groupId>${project.groupId}</groupId>
267       <artifactId>openstack.net-virt</artifactId>
268       <version>${project.version}</version>
269     </dependency>
270     <dependency>
271       <groupId>${project.groupId}</groupId>
272       <artifactId>utils.netvirt-it-utils</artifactId>
273       <version>${project.version}</version>
274       <!--<scope>test</scope>-->
275     </dependency>
276     <dependency>
277       <groupId>org.opendaylight.ovsdb</groupId>
278       <artifactId>utils.ovsdb-it-utils</artifactId>
279       <version>${ovsdb.version}</version>
280       <!--<scope>test</scope>-->
281     </dependency>
282   </dependencies>
283
284   <!--
285       Maven Site Configuration
286
287       The following configuration is necessary for maven-site-plugin to
288       correctly identify the correct deployment path for OpenDaylight Maven
289       sites.
290   -->
291   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
292
293   <distributionManagement>
294     <site>
295       <id>opendaylight-site</id>
296       <url>${nexus.site.url}/${project.artifactId}/</url>
297     </site>
298   </distributionManagement>
299 </project>