Merge "Migrate restconf dependencies"
[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     <restconf.version>1.3.0-SNAPSHOT</restconf.version>
47     <yangtools.version>0.8.0-SNAPSHOT</yangtools.version>
48   </properties>
49   <dependencyManagement>
50     <dependencies>
51       <!-- project specific dependencies -->
52       <dependency>
53         <groupId>org.opendaylight.yangtools</groupId>
54         <artifactId>yangtools-artifacts</artifactId>
55         <version>${yangtools.version}</version>
56         <type>pom</type>
57         <scope>import</scope>
58       </dependency>
59       <dependency>
60         <groupId>org.opendaylight.controller</groupId>
61         <artifactId>mdsal-artifacts</artifactId>
62         <version>${mdsal.version}</version>
63         <type>pom</type>
64         <scope>import</scope>
65       </dependency>
66       <dependency>
67         <groupId>org.opendaylight.netconf</groupId>
68         <artifactId>restconf-artifacts</artifactId>
69         <version>${restconf.version}</version>
70         <type>pom</type>
71         <scope>import</scope>
72       </dependency>
73     </dependencies>
74   </dependencyManagement>
75   <dependencies>
76     <dependency>
77       <groupId>org.opendaylight.yangtools</groupId>
78       <artifactId>features-yangtools</artifactId>
79       <type>xml</type>
80       <classifier>features</classifier>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.controller</groupId>
84       <artifactId>features-mdsal</artifactId>
85       <type>xml</type>
86       <classifier>features</classifier>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.netconf</groupId>
90       <artifactId>features-restconf</artifactId>
91       <type>xml</type>
92       <classifier>features</classifier>
93     </dependency>
94     <dependency>
95       <groupId>${project.groupId}</groupId>
96       <artifactId>southbound-impl</artifactId>
97       <version>${project.version}</version>
98     </dependency>
99     <dependency>
100       <groupId>${project.groupId}</groupId>
101       <artifactId>southbound-impl</artifactId>
102       <version>${project.version}</version>
103       <type>xml</type>
104       <classifier>config</classifier>
105     </dependency>
106     <dependency>
107       <groupId>${project.groupId}</groupId>
108       <artifactId>southbound-api</artifactId>
109       <version>${project.version}</version>
110     </dependency>
111   </dependencies>
112 </project>