Remove <prerequisites> from pom.xml to avoid WARNING
[ovsdb.git] / southbound / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2014, 2016 Cisco Systems 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
10   <parent>
11     <groupId>org.opendaylight.odlparent</groupId>
12     <artifactId>odlparent-lite</artifactId>
13     <version>1.9.0-SNAPSHOT</version>
14     <relativePath/>
15   </parent>
16
17   <groupId>org.opendaylight.ovsdb</groupId>
18   <artifactId>southbound-aggregator</artifactId>
19   <version>1.5.0-SNAPSHOT</version>
20   <name>${project.artifactId}</name>
21   <packaging>pom</packaging>
22   <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>
23   <licenses>
24     <license>
25       <name>Eclipse Public License v1.0</name>
26       <url>http://www.eclipse.org/legal/epl-v10.html</url>
27     </license>
28   </licenses>
29   <developers>
30     <developer>
31       <name>Sam Hague</name>
32       <email>shague@gmail.com</email>
33       <url>https://github.com/shague</url>
34     </developer>
35   </developers>
36   <scm>
37     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
38     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
39     <tag>HEAD</tag>
40     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
41   </scm>
42   <modelVersion>4.0.0</modelVersion>
43   <modules>
44     <module>southbound-api</module>
45     <module>southbound-impl</module>
46     <module>southbound-karaf</module>
47     <module>southbound-features</module>
48     <module>southbound-artifacts</module>
49     <module>southbound-it</module>
50   </modules>
51
52   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
53   <build>
54     <plugins>
55       <plugin>
56         <groupId>org.apache.maven.plugins</groupId>
57         <artifactId>maven-deploy-plugin</artifactId>
58         <configuration>
59           <skip>true</skip>
60         </configuration>
61       </plugin>
62       <plugin>
63         <groupId>org.apache.maven.plugins</groupId>
64         <artifactId>maven-install-plugin</artifactId>
65         <configuration>
66           <skip>true</skip>
67         </configuration>
68       </plugin>
69     </plugins>
70   </build>
71
72   <!--
73       Maven Site Configuration
74
75       The following configuration is necessary for maven-site-plugin to
76       correctly identify the correct deployment path for OpenDaylight Maven
77       sites.
78   -->
79   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
80
81   <distributionManagement>
82     <site>
83       <id>opendaylight-site</id>
84       <url>${nexus.site.url}/${project.artifactId}/</url>
85     </site>
86   </distributionManagement>
87 </project>