f80eeb2656258b1cf9547b7dc06816f8e37acc55
[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.7.0-SNAPSHOT</version>
13     <relativePath/>
14   </parent>
15   <groupId>org.opendaylight.ovsdb</groupId>
16   <artifactId>southbound-features</artifactId>
17   <version>1.3.0-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     <controller.mdsal.version>1.4.0-SNAPSHOT</controller.mdsal.version>
46     <restconf.version>1.4.0-SNAPSHOT</restconf.version>
47     <yangtools.version>1.0.0-SNAPSHOT</yangtools.version>
48     <mdsal.model.version>0.9.0-SNAPSHOT</mdsal.model.version>
49   </properties>
50   <dependencyManagement>
51     <dependencies>
52       <!-- project specific dependencies -->
53       <dependency>
54         <groupId>org.opendaylight.yangtools</groupId>
55         <artifactId>yangtools-artifacts</artifactId>
56         <version>${yangtools.version}</version>
57         <type>pom</type>
58         <scope>import</scope>
59       </dependency>
60       <dependency>
61         <groupId>org.opendaylight.controller</groupId>
62         <artifactId>mdsal-artifacts</artifactId>
63         <version>${controller.mdsal.version}</version>
64         <type>pom</type>
65         <scope>import</scope>
66       </dependency>
67       <dependency>
68         <groupId>org.opendaylight.netconf</groupId>
69         <artifactId>restconf-artifacts</artifactId>
70         <version>${restconf.version}</version>
71         <type>pom</type>
72         <scope>import</scope>
73       </dependency>
74     </dependencies>
75   </dependencyManagement>
76   <dependencies>
77     <dependency>
78       <groupId>org.opendaylight.yangtools</groupId>
79       <artifactId>features-yangtools</artifactId>
80       <type>xml</type>
81       <classifier>features</classifier>
82     </dependency>
83
84     <dependency>
85       <groupId>org.opendaylight.mdsal.model</groupId>
86       <artifactId>features-mdsal-model</artifactId>
87       <version>${mdsal.model.version}</version>
88       <classifier>features</classifier>
89       <type>xml</type>
90       <scope>runtime</scope>
91     </dependency>
92
93     <dependency>
94       <groupId>org.opendaylight.controller</groupId>
95       <artifactId>features-mdsal</artifactId>
96       <type>xml</type>
97       <classifier>features</classifier>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.netconf</groupId>
101       <artifactId>features-restconf</artifactId>
102       <type>xml</type>
103       <classifier>features</classifier>
104     </dependency>
105     <dependency>
106       <groupId>${project.groupId}</groupId>
107       <artifactId>southbound-impl</artifactId>
108       <version>${project.version}</version>
109     </dependency>
110     <dependency>
111       <groupId>${project.groupId}</groupId>
112       <artifactId>southbound-impl</artifactId>
113       <version>${project.version}</version>
114       <type>xml</type>
115       <classifier>config</classifier>
116     </dependency>
117     <dependency>
118       <groupId>${project.groupId}</groupId>
119       <artifactId>southbound-api</artifactId>
120       <version>${project.version}</version>
121     </dependency>
122     <dependency>
123       <groupId>${project.groupId}</groupId>
124       <artifactId>utils.southbound-utils</artifactId>
125       <version>${project.version}</version>
126     </dependency>
127     <dependency>
128       <groupId>${project.groupId}</groupId>
129       <artifactId>utils.mdsal-utils</artifactId>
130       <version>${project.version}</version>
131     </dependency>
132     <dependency>
133       <groupId>${project.groupId}</groupId>
134       <artifactId>library-features</artifactId>
135       <type>xml</type>
136       <classifier>features</classifier>
137       <version>${project.version}</version>
138     </dependency>
139   </dependencies>
140 </project>