Merge "Added controller is-connected code"
[ovsdb.git] / features / ovsdb / 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.5.0-SNAPSHOT</version>
18     <relativePath></relativePath>
19   </parent>
20
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>features-ovsdb</artifactId>
23   <version>1.1.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   <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     <!-- all this added to work around sun.reflect bug
49     <appauth.version>0.5.0-SNAPSHOT</appauth.version>
50     <bundlescanner.api.version>0.5.0-SNAPSHOT</bundlescanner.api.version>
51     <clustering.services.version>0.6.0-SNAPSHOT</clustering.services.version>
52     <configuration.implementation.version>0.5.0-SNAPSHOT</configuration.implementation.version>
53     <configuration.version>0.5.0-SNAPSHOT</configuration.version>
54     <containermanager.version>0.6.0-SNAPSHOT</containermanager.version>
55     <northbound.commons.version>0.5.0-SNAPSHOT</northbound.commons.version>
56     <switchmanager.api.version>0.8.0-SNAPSHOT</switchmanager.api.version>
57     <topologymanager.version>0.5.0-SNAPSHOT</topologymanager.version>
58     <usermanager.version>0.5.0-SNAPSHOT</usermanager.version>
59     all this added to work around sun.reflect bug -->
60     <odl.karaf.base.version>1.5.0-SNAPSHOT</odl.karaf.base.version>
61     <mdsal.version>1.2.0-SNAPSHOT</mdsal.version>
62     <networkconfig.neutron.version>0.5.0-SNAPSHOT</networkconfig.neutron.version>
63     <nsf.version>0.5.0-SNAPSHOT</nsf.version>
64     <ovsdb.library.version>1.1.0-SNAPSHOT</ovsdb.library.version>
65     <ovsdb.northbound.version>0.7.0-SNAPSHOT</ovsdb.northbound.version>
66     <openstack.netvirt.version>1.1.0-SNAPSHOT</openstack.netvirt.version>
67     <openstack.netvirt.providers.version>1.1.0-SNAPSHOT</openstack.netvirt.providers.version>
68     <ovsdb.plugin.version>1.1.0-SNAPSHOT</ovsdb.plugin.version>
69     <ovsdb.plugin.compatibility.layer.version>1.1.0-SNAPSHOT</ovsdb.plugin.compatibility.layer.version>
70     <ovsdb.utils.servicehelper.version>1.1.0-SNAPSHOT</ovsdb.utils.servicehelper.version>
71     <plugin.shell.version>1.1.0-SNAPSHOT</plugin.shell.version>
72     <schema.hardwarevtep.version>1.1.0-SNAPSHOT</schema.hardwarevtep.version>
73     <schema.openvswitch.version>1.1.0-SNAPSHOT</schema.openvswitch.version>
74     <openflowplugin.version>0.1.0-SNAPSHOT</openflowplugin.version>
75     <sal.version>0.9.0-SNAPSHOT</sal.version>
76     <yangtools.version>0.7.0-SNAPSHOT</yangtools.version>
77   </properties>
78
79   <dependencyManagement>
80     <dependencies>
81       <dependency>
82         <groupId>org.opendaylight.yangtools</groupId>
83         <artifactId>yangtools-artifacts</artifactId>
84         <version>${yangtools.version}</version>
85         <type>pom</type>
86         <scope>import</scope>
87       </dependency>
88       <dependency>
89         <groupId>org.opendaylight.controller</groupId>
90         <artifactId>mdsal-artifacts</artifactId>
91         <version>${mdsal.version}</version>
92         <type>pom</type>
93         <scope>import</scope>
94       </dependency>
95     </dependencies>
96   </dependencyManagement>
97   <dependencies>
98     <dependency>
99       <groupId>org.opendaylight.controller</groupId>
100       <artifactId>features-base</artifactId>
101       <version>${odl.karaf.base.version}</version>
102       <classifier>features</classifier>
103       <type>xml</type>
104     </dependency>
105     <dependency>
106       <groupId>org.opendaylight.controller</groupId>
107       <artifactId>features-adsal</artifactId>
108       <version>${sal.version}</version>
109       <classifier>features</classifier>
110       <type>xml</type>
111     </dependency>
112     <dependency>
113       <groupId>org.opendaylight.controller</groupId>
114       <artifactId>features-nsf</artifactId>
115       <version>${nsf.version}</version>
116       <classifier>features</classifier>
117       <type>xml</type>
118     </dependency>
119     <!-- sun.reflect
120     <dependency>
121       <groupId>org.opendaylight.controller</groupId>
122       <artifactId>commons.northbound</artifactId>
123       <version>${northbound.commons.version}</version>
124     </dependency>
125     sun.reflect -->
126     <dependency>
127       <groupId>org.opendaylight.neutron</groupId>
128       <artifactId>features-neutron</artifactId>
129       <version>${networkconfig.neutron.version}</version>
130       <classifier>features</classifier>
131       <type>xml</type>
132     </dependency>
133     <dependency>
134       <groupId>org.opendaylight.openflowplugin</groupId>
135       <artifactId>features-openflowplugin</artifactId>
136       <version>${openflowplugin.version}</version>
137       <classifier>features</classifier>
138       <type>xml</type>
139     </dependency>
140     <dependency>
141       <groupId>org.opendaylight.openflowplugin</groupId>
142       <artifactId>features-openflowplugin-extension</artifactId>
143       <version>${openflowplugin.version}</version>
144       <classifier>features</classifier>
145       <type>xml</type>
146     </dependency>
147     <dependency>
148       <groupId>org.opendaylight.ovsdb</groupId>
149       <artifactId>library</artifactId>
150       <version>${ovsdb.library.version}</version>
151     </dependency>
152     <dependency>
153       <groupId>org.opendaylight.ovsdb</groupId>
154       <artifactId>northbound</artifactId>
155       <version>${ovsdb.northbound.version}</version>
156     </dependency>
157     <dependency>
158       <groupId>org.opendaylight.ovsdb</groupId>
159       <artifactId>openstack.net-virt</artifactId>
160       <version>${openstack.netvirt.version}</version>
161     </dependency>
162     <dependency>
163       <groupId>org.opendaylight.ovsdb</groupId>
164       <artifactId>openstack.net-virt</artifactId>
165       <version>${openstack.netvirt.version}</version>
166       <type>xml</type>
167       <classifier>config</classifier>
168     </dependency>
169     <dependency>
170       <groupId>org.opendaylight.ovsdb</groupId>
171       <artifactId>openstack.net-virt-providers</artifactId>
172       <version>${openstack.netvirt.providers.version}</version>
173     </dependency>
174     <dependency>
175       <groupId>org.opendaylight.ovsdb</groupId>
176       <artifactId>openstack.net-virt-providers</artifactId>
177       <version>${openstack.netvirt.providers.version}</version>
178       <type>xml</type>
179       <classifier>config</classifier>
180     </dependency>
181     <dependency>
182       <groupId>org.opendaylight.ovsdb</groupId>
183       <artifactId>plugin</artifactId>
184       <version>${ovsdb.plugin.version}</version>
185     </dependency>
186     <dependency>
187       <groupId>org.opendaylight.ovsdb</groupId>
188       <artifactId>ovsdb-plugin-compatibility-layer</artifactId>
189       <version>${ovsdb.plugin.compatibility.layer.version}</version>
190     </dependency>
191     <dependency>
192       <groupId>org.opendaylight.ovsdb</groupId>
193       <artifactId>plugin-shell</artifactId>
194       <version>${plugin.shell.version}</version>
195     </dependency>
196     <dependency>
197       <groupId>org.opendaylight.ovsdb</groupId>
198       <artifactId>schema.openvswitch</artifactId>
199       <version>${schema.openvswitch.version}</version>
200     </dependency>
201     <dependency>
202       <groupId>org.opendaylight.ovsdb</groupId>
203       <artifactId>schema.hardwarevtep</artifactId>
204       <version>${schema.hardwarevtep.version}</version>
205     </dependency>
206     <dependency>
207       <groupId>org.opendaylight.ovsdb</groupId>
208       <artifactId>utils.servicehelper</artifactId>
209       <version>${ovsdb.utils.servicehelper.version}</version>
210     </dependency>
211     <dependency>
212       <groupId>com.google.code.gson</groupId>
213       <artifactId>gson</artifactId>
214     </dependency>
215     <dependency>
216       <groupId>org.opendaylight.controller</groupId>
217       <artifactId>features-mdsal</artifactId>
218       <type>xml</type>
219       <classifier>features</classifier>
220     </dependency>
221     <dependency>
222       <groupId>${project.groupId}</groupId>
223       <artifactId>southbound-features</artifactId>
224       <version>${project.version}</version>
225       <type>xml</type>
226       <classifier>features</classifier>
227     </dependency>
228   </dependencies>
229 </project>