Add project info to name in pom files
[netvirt.git] / openstack / 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.8.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.netvirt</groupId>
22   <artifactId>features-netvirt</artifactId>
23   <name>ODL :: netvirt :: ${project.artifactId}</name>
24   <version>1.4.0-SNAPSHOT</version>
25   <packaging>jar</packaging>
26   <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>
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/netvirt.git</connection>
42     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
43     <tag>HEAD</tag>
44     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
45   </scm>
46
47   <properties>
48     <dlux.version>0.5.0-SNAPSHOT</dlux.version>
49     <controller.mdsal.version>1.5.0-SNAPSHOT</controller.mdsal.version>
50     <mdsal.model.version>0.10.0-SNAPSHOT</mdsal.model.version>
51     <neutron.version>0.8.0-SNAPSHOT</neutron.version>
52     <odl.karaf.base.version>1.8.0-SNAPSHOT</odl.karaf.base.version>
53     <openflowplugin.version>0.4.0-SNAPSHOT</openflowplugin.version>
54     <ovsdb.version>1.4.0-SNAPSHOT</ovsdb.version>
55     <restconf.version>1.5.0-SNAPSHOT</restconf.version>
56     <yangtools.version>1.1.0-SNAPSHOT</yangtools.version>
57   </properties>
58
59   <dependencies>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>features-mdsal</artifactId>
63       <version>${controller.mdsal.version}</version>
64       <type>xml</type>
65       <classifier>features</classifier>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.mdsal.model</groupId>
69       <artifactId>features-mdsal-model</artifactId>
70       <version>${mdsal.model.version}</version>
71       <classifier>features</classifier>
72       <type>xml</type>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.netconf</groupId>
76       <artifactId>features-restconf</artifactId>
77       <version>${restconf.version}</version>
78       <classifier>features</classifier>
79       <type>xml</type>
80     </dependency>
81     <!-- TODO clean up based on what is provided by odlparent -->
82     <dependency>
83       <groupId>org.osgi</groupId>
84       <artifactId>org.osgi.compendium</artifactId>
85       <scope>provided</scope>
86     </dependency>
87     <dependency>
88       <groupId>org.osgi</groupId>
89       <artifactId>org.osgi.core</artifactId>
90       <scope>provided</scope>
91     </dependency>
92     <dependency>
93       <groupId>org.apache.felix</groupId>
94       <artifactId>org.apache.felix.dependencymanager</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>com.fasterxml.jackson.core</groupId>
98       <artifactId>jackson-annotations</artifactId>
99     </dependency>
100     <dependency>
101       <groupId>com.fasterxml.jackson.core</groupId>
102       <artifactId>jackson-core</artifactId>
103     </dependency>
104     <dependency>
105       <groupId>com.fasterxml.jackson.core</groupId>
106       <artifactId>jackson-databind</artifactId>
107     </dependency>
108     <dependency>
109       <groupId>com.google.guava</groupId>
110       <artifactId>guava</artifactId>
111     </dependency>
112     <dependency>
113       <groupId>commons-net</groupId>
114       <artifactId>commons-net</artifactId>
115     </dependency>
116     <dependency>
117       <groupId>org.apache.commons</groupId>
118       <artifactId>commons-lang3</artifactId>
119     </dependency>
120     <dependency>
121       <groupId>io.netty</groupId>
122       <artifactId>netty-buffer</artifactId>
123     </dependency>
124     <dependency>
125       <groupId>io.netty</groupId>
126       <artifactId>netty-codec</artifactId>
127     </dependency>
128     <dependency>
129       <groupId>io.netty</groupId>
130       <artifactId>netty-codec-http</artifactId>
131     </dependency>
132     <dependency>
133       <groupId>io.netty</groupId>
134       <artifactId>netty-common</artifactId>
135     </dependency>
136     <dependency>
137       <groupId>io.netty</groupId>
138       <artifactId>netty-handler</artifactId>
139     </dependency>
140     <dependency>
141       <groupId>io.netty</groupId>
142       <artifactId>netty-transport</artifactId>
143     </dependency>
144     <dependency>
145       <groupId>com.google.code.gson</groupId>
146       <artifactId>gson</artifactId>
147     </dependency>
148     <dependency>
149       <groupId>org.opendaylight.neutron</groupId>
150       <artifactId>features-neutron</artifactId>
151       <version>${neutron.version}</version>
152       <classifier>features</classifier>
153       <type>xml</type>
154     </dependency>
155     <dependency>
156       <groupId>org.opendaylight.openflowplugin</groupId>
157       <artifactId>features-openflowplugin</artifactId>
158       <version>${openflowplugin.version}</version>
159       <classifier>features</classifier>
160       <type>xml</type>
161     </dependency>
162     <dependency>
163       <groupId>org.opendaylight.openflowplugin</groupId>
164       <artifactId>features-openflowplugin-extension</artifactId>
165       <version>${openflowplugin.version}</version>
166       <classifier>features</classifier>
167       <type>xml</type>
168     </dependency>
169     <dependency>
170       <groupId>${project.groupId}</groupId>
171       <artifactId>openstack.net-virt</artifactId>
172       <version>${project.version}</version>
173     </dependency>
174     <dependency>
175       <groupId>${project.groupId}</groupId>
176       <artifactId>openstack.net-virt-providers</artifactId>
177       <version>${project.version}</version>
178     </dependency>
179     <dependency>
180       <groupId>org.opendaylight.ovsdb</groupId>
181       <artifactId>schema.openvswitch</artifactId>
182       <version>${ovsdb.version}</version>
183     </dependency>
184     <dependency>
185       <groupId>org.opendaylight.ovsdb</groupId>
186       <artifactId>schema.hardwarevtep</artifactId>
187       <version>${ovsdb.version}</version>
188     </dependency>
189     <dependency>
190       <groupId>${project.groupId}</groupId>
191       <artifactId>utils.servicehelper</artifactId>
192       <version>${project.version}</version>
193     </dependency>
194     <dependency>
195       <groupId>${project.groupId}</groupId>
196       <artifactId>utils.mdsal-utils</artifactId>
197       <version>${project.version}</version>
198     </dependency>
199     <dependency>
200       <groupId>org.opendaylight.ovsdb</groupId>
201       <artifactId>utils.mdsal-utils</artifactId>
202       <version>${ovsdb.version}</version>
203     </dependency>
204     <dependency>
205       <groupId>${project.groupId}</groupId>
206       <artifactId>ovsdb-ui-bundle</artifactId>
207       <version>${project.version}</version>
208     </dependency>
209     <dependency>
210       <groupId>org.opendaylight.ovsdb</groupId>
211       <artifactId>southbound-features</artifactId>
212       <version>${ovsdb.version}</version>
213       <type>xml</type>
214       <classifier>features</classifier>
215     </dependency>
216     <dependency>
217       <groupId>org.opendaylight.dlux</groupId>
218       <artifactId>features-dlux</artifactId>
219       <version>${dlux.version}</version>
220       <classifier>features</classifier>
221       <type>xml</type>
222     </dependency>
223     <dependency>
224       <groupId>${project.groupId}</groupId>
225       <artifactId>utils.netvirt-it-utils</artifactId>
226       <version>${project.version}</version>
227       <!--<scope>test</scope>-->
228     </dependency>
229     <dependency>
230       <groupId>org.opendaylight.ovsdb</groupId>
231       <artifactId>utils.ovsdb-it-utils</artifactId>
232       <version>${ovsdb.version}</version>
233       <!--<scope>test</scope>-->
234     </dependency>
235   </dependencies>
236
237   <!--
238       Maven Site Configuration
239
240       The following configuration is necessary for maven-site-plugin to
241       correctly identify the correct deployment path for OpenDaylight Maven
242       sites.
243   -->
244   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
245
246   <distributionManagement>
247     <site>
248       <id>opendaylight-site</id>
249       <url>${nexus.site.url}/${project.artifactId}/</url>
250     </site>
251   </distributionManagement>
252 </project>