BUG-5737: enable OVSDB Maven site
[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.7.0-SNAPSHOT</version>
14     <relativePath/>
15   </parent>
16
17   <groupId>org.opendaylight.ovsdb</groupId>
18   <artifactId>southbound-aggregator</artifactId>
19   <version>1.3.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   <prerequisites>
44     <maven>3.1.1</maven>
45   </prerequisites>
46   <modules>
47     <module>southbound-api</module>
48     <module>southbound-impl</module>
49     <module>southbound-karaf</module>
50     <module>southbound-features</module>
51     <module>southbound-artifacts</module>
52     <module>southbound-it</module>
53   </modules>
54
55   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
56   <build>
57     <plugins>
58       <plugin>
59         <groupId>org.apache.maven.plugins</groupId>
60         <artifactId>maven-deploy-plugin</artifactId>
61         <configuration>
62           <skip>true</skip>
63         </configuration>
64       </plugin>
65       <plugin>
66         <groupId>org.apache.maven.plugins</groupId>
67         <artifactId>maven-install-plugin</artifactId>
68         <configuration>
69           <skip>true</skip>
70         </configuration>
71       </plugin>
72     </plugins>
73   </build>
74
75   <!--
76       Maven Site Configuration
77
78       The following configuration is necessary for maven-site-plugin to
79       correctly identify the correct deployment path for OpenDaylight Maven
80       sites.
81   -->
82   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
83
84   <distributionManagement>
85     <site>
86       <id>opendaylight-site</id>
87       <url>${nexus.site.url}/${project.artifactId}/</url>
88     </site>
89   </distributionManagement>
90 </project>