Remove <prerequisites> from pom.xml to avoid WARNING
[ovsdb.git] / southbound / southbound-features / 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.9.0-SNAPSHOT</version>
13     <relativePath/>
14   </parent>
15   <groupId>org.opendaylight.ovsdb</groupId>
16   <artifactId>southbound-features</artifactId>
17   <version>1.5.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   <properties>
41     <controller.mdsal.version>1.6.0-SNAPSHOT</controller.mdsal.version>
42     <restconf.version>1.6.0-SNAPSHOT</restconf.version>
43     <yangtools.version>1.2.0-SNAPSHOT</yangtools.version>
44     <mdsal.model.version>0.11.0-SNAPSHOT</mdsal.model.version>
45   </properties>
46   <dependencyManagement>
47     <dependencies>
48       <!-- project specific dependencies -->
49       <dependency>
50         <groupId>org.opendaylight.yangtools</groupId>
51         <artifactId>yangtools-artifacts</artifactId>
52         <version>${yangtools.version}</version>
53         <type>pom</type>
54         <scope>import</scope>
55       </dependency>
56       <dependency>
57         <groupId>org.opendaylight.controller</groupId>
58         <artifactId>mdsal-artifacts</artifactId>
59         <version>${controller.mdsal.version}</version>
60         <type>pom</type>
61         <scope>import</scope>
62       </dependency>
63       <dependency>
64         <groupId>org.opendaylight.netconf</groupId>
65         <artifactId>restconf-artifacts</artifactId>
66         <version>${restconf.version}</version>
67         <type>pom</type>
68         <scope>import</scope>
69       </dependency>
70     </dependencies>
71   </dependencyManagement>
72   <dependencies>
73     <dependency>
74       <groupId>org.opendaylight.yangtools</groupId>
75       <artifactId>features-yangtools</artifactId>
76       <type>xml</type>
77       <classifier>features</classifier>
78     </dependency>
79
80     <dependency>
81       <groupId>org.opendaylight.mdsal.model</groupId>
82       <artifactId>features-mdsal-model</artifactId>
83       <version>${mdsal.model.version}</version>
84       <classifier>features</classifier>
85       <type>xml</type>
86       <scope>runtime</scope>
87     </dependency>
88
89     <dependency>
90       <groupId>org.opendaylight.controller</groupId>
91       <artifactId>features-mdsal</artifactId>
92       <type>xml</type>
93       <classifier>features</classifier>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.netconf</groupId>
97       <artifactId>features-restconf</artifactId>
98       <type>xml</type>
99       <classifier>features</classifier>
100     </dependency>
101     <dependency>
102       <groupId>${project.groupId}</groupId>
103       <artifactId>southbound-impl</artifactId>
104       <version>${project.version}</version>
105     </dependency>
106     <dependency>
107       <groupId>${project.groupId}</groupId>
108       <artifactId>southbound-impl</artifactId>
109       <version>${project.version}</version>
110       <type>cfg</type>
111       <classifier>config</classifier>
112     </dependency>
113     <dependency>
114       <groupId>${project.groupId}</groupId>
115       <artifactId>southbound-api</artifactId>
116       <version>${project.version}</version>
117     </dependency>
118     <dependency>
119       <groupId>${project.groupId}</groupId>
120       <artifactId>utils.southbound-utils</artifactId>
121       <version>${project.version}</version>
122     </dependency>
123     <dependency>
124       <groupId>${project.groupId}</groupId>
125       <artifactId>utils.mdsal-utils</artifactId>
126       <version>${project.version}</version>
127     </dependency>
128     <dependency>
129       <groupId>${project.groupId}</groupId>
130       <artifactId>library-features</artifactId>
131       <type>xml</type>
132       <classifier>features</classifier>
133       <version>${project.version}</version>
134     </dependency>
135   </dependencies>
136
137   <!--
138       Maven Site Configuration
139
140       The following configuration is necessary for maven-site-plugin to
141       correctly identify the correct deployment path for OpenDaylight Maven
142       sites.
143   -->
144   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
145
146   <distributionManagement>
147     <site>
148       <id>opendaylight-site</id>
149       <url>${nexus.site.url}/${project.artifactId}/</url>
150     </site>
151   </distributionManagement>
152 </project>