Merge "Drop the #1997-related sleep"
[ovsdb.git] / southbound / southbound-features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9   <parent>
10     <groupId>org.opendaylight.odlparent</groupId>
11     <artifactId>features-parent</artifactId>
12     <version>1.6.0-SNAPSHOT</version>
13     <relativePath></relativePath>
14   </parent>
15   <groupId>org.opendaylight.ovsdb</groupId>
16   <artifactId>southbound-features</artifactId>
17   <version>1.2.1-SNAPSHOT</version>
18   <name>${project.artifactId}</name>
19   <modelVersion>4.0.0</modelVersion>
20   <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>
21   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
22   <licenses>
23     <license>
24       <name>Eclipse Public License v1.0</name>
25       <url>http://www.eclipse.org/legal/epl-v10.html</url>
26     </license>
27   </licenses>
28   <developers>
29     <developer>
30       <name>Sam Hague</name>
31       <email>shague@gmail.com</email>
32       <url>https://github.com/shague</url>
33     </developer>
34   </developers>
35   <scm>
36     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
37     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
38     <tag>HEAD</tag>
39     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
40   </scm>
41   <prerequisites>
42     <maven>3.1.1</maven>
43   </prerequisites>
44   <properties>
45     <mdsal.version>1.3.0-SNAPSHOT</mdsal.version>
46     <yangtools.version>0.8.0-SNAPSHOT</yangtools.version>
47   </properties>
48   <dependencyManagement>
49     <dependencies>
50       <!-- project specific dependencies -->
51       <dependency>
52         <groupId>org.opendaylight.yangtools</groupId>
53         <artifactId>yangtools-artifacts</artifactId>
54         <version>${yangtools.version}</version>
55         <type>pom</type>
56         <scope>import</scope>
57       </dependency>
58       <dependency>
59         <groupId>org.opendaylight.controller</groupId>
60         <artifactId>mdsal-artifacts</artifactId>
61         <version>${mdsal.version}</version>
62         <type>pom</type>
63         <scope>import</scope>
64       </dependency>
65     </dependencies>
66   </dependencyManagement>
67   <dependencies>
68     <dependency>
69       <groupId>org.opendaylight.yangtools</groupId>
70       <artifactId>features-yangtools</artifactId>
71       <type>xml</type>
72       <classifier>features</classifier>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.controller</groupId>
76       <artifactId>features-mdsal</artifactId>
77       <type>xml</type>
78       <classifier>features</classifier>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.controller</groupId>
82       <artifactId>features-restconf</artifactId>
83       <type>xml</type>
84       <classifier>features</classifier>
85     </dependency>
86     <dependency>
87       <groupId>${project.groupId}</groupId>
88       <artifactId>southbound-impl</artifactId>
89       <version>${project.version}</version>
90     </dependency>
91     <dependency>
92       <groupId>${project.groupId}</groupId>
93       <artifactId>southbound-impl</artifactId>
94       <version>${project.version}</version>
95       <type>xml</type>
96       <classifier>config</classifier>
97     </dependency>
98     <dependency>
99       <groupId>${project.groupId}</groupId>
100       <artifactId>southbound-api</artifactId>
101       <version>${project.version}</version>
102     </dependency>
103   </dependencies>
104 </project>