946828a6a3c636452c6261c71d305275b5944001
[ovsdb.git] / southbound / southbound-features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2014, 2016 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.8.0-SNAPSHOT</version>
13     <relativePath/>
14   </parent>
15   <groupId>org.opendaylight.ovsdb</groupId>
16   <artifactId>southbound-features</artifactId>
17   <version>1.4.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   <licenses>
22     <license>
23       <name>Eclipse Public License v1.0</name>
24       <url>http://www.eclipse.org/legal/epl-v10.html</url>
25     </license>
26   </licenses>
27   <developers>
28     <developer>
29       <name>Sam Hague</name>
30       <email>shague@gmail.com</email>
31       <url>https://github.com/shague</url>
32     </developer>
33   </developers>
34   <scm>
35     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
36     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
37     <tag>HEAD</tag>
38     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
39   </scm>
40   <prerequisites>
41     <maven>3.1.1</maven>
42   </prerequisites>
43   <properties>
44     <controller.mdsal.version>1.5.0-SNAPSHOT</controller.mdsal.version>
45     <restconf.version>1.5.0-SNAPSHOT</restconf.version>
46     <yangtools.version>1.1.0-SNAPSHOT</yangtools.version>
47     <mdsal.model.version>0.10.0-SNAPSHOT</mdsal.model.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>${controller.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
83     <dependency>
84       <groupId>org.opendaylight.mdsal.model</groupId>
85       <artifactId>features-mdsal-model</artifactId>
86       <version>${mdsal.model.version}</version>
87       <classifier>features</classifier>
88       <type>xml</type>
89       <scope>runtime</scope>
90     </dependency>
91
92     <dependency>
93       <groupId>org.opendaylight.controller</groupId>
94       <artifactId>features-mdsal</artifactId>
95       <type>xml</type>
96       <classifier>features</classifier>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.netconf</groupId>
100       <artifactId>features-restconf</artifactId>
101       <type>xml</type>
102       <classifier>features</classifier>
103     </dependency>
104     <dependency>
105       <groupId>${project.groupId}</groupId>
106       <artifactId>southbound-impl</artifactId>
107       <version>${project.version}</version>
108     </dependency>
109     <dependency>
110       <groupId>${project.groupId}</groupId>
111       <artifactId>southbound-impl</artifactId>
112       <version>${project.version}</version>
113       <type>cfg</type>
114       <classifier>config</classifier>
115     </dependency>
116     <dependency>
117       <groupId>${project.groupId}</groupId>
118       <artifactId>southbound-api</artifactId>
119       <version>${project.version}</version>
120     </dependency>
121     <dependency>
122       <groupId>${project.groupId}</groupId>
123       <artifactId>utils.southbound-utils</artifactId>
124       <version>${project.version}</version>
125     </dependency>
126     <dependency>
127       <groupId>${project.groupId}</groupId>
128       <artifactId>utils.mdsal-utils</artifactId>
129       <version>${project.version}</version>
130     </dependency>
131     <dependency>
132       <groupId>${project.groupId}</groupId>
133       <artifactId>library-features</artifactId>
134       <type>xml</type>
135       <classifier>features</classifier>
136       <version>${project.version}</version>
137     </dependency>
138   </dependencies>
139
140   <!--
141       Maven Site Configuration
142
143       The following configuration is necessary for maven-site-plugin to
144       correctly identify the correct deployment path for OpenDaylight Maven
145       sites.
146   -->
147   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
148
149   <distributionManagement>
150     <site>
151       <id>opendaylight-site</id>
152       <url>${nexus.site.url}/${project.artifactId}/</url>
153     </site>
154   </distributionManagement>
155 </project>