d0e7c1de0e650e586d028d287f7d82dcca049bce
[ovsdb.git] / commons / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2015, 2016 Red Hat, Inc. and others. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.odlparent</groupId>
16     <artifactId>odlparent-lite</artifactId>
17     <version>1.9.0</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>parents</artifactId>
23   <version>1.5.0-SNAPSHOT</version>
24   <!-- <name> formatting is used by autorelease to parse and notify projects on
25        build failure. Please do not modify this unless you have a good reason. -->
26   <name>ODL :: ovsdb :: ${project.artifactId}</name>
27   <packaging>pom</packaging>
28   <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>
29   <licenses>
30     <license>
31       <name>Eclipse Public License v1.0</name>
32       <url>http://www.eclipse.org/legal/epl-v10.html</url>
33     </license>
34   </licenses>
35   <developers>
36     <developer>
37       <name>Sam Hague</name>
38       <email>shague@gmail.com</email>
39       <url>https://github.com/shague</url>
40     </developer>
41   </developers>
42   <scm>
43     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
44     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
45     <tag>HEAD</tag>
46     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
47   </scm>
48
49   <modules>
50     <module>it</module>
51   </modules>
52
53   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
54   <build>
55     <plugins>
56       <plugin>
57         <groupId>org.apache.maven.plugins</groupId>
58         <artifactId>maven-deploy-plugin</artifactId>
59         <configuration>
60           <skip>true</skip>
61         </configuration>
62       </plugin>
63       <plugin>
64         <groupId>org.apache.maven.plugins</groupId>
65         <artifactId>maven-install-plugin</artifactId>
66         <configuration>
67           <skip>true</skip>
68         </configuration>
69       </plugin>
70     </plugins>
71   </build>
72
73   <!--
74       Maven Site Configuration
75
76       The following configuration is necessary for maven-site-plugin to
77       correctly identify the correct deployment path for OpenDaylight Maven
78       sites.
79   -->
80   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
81
82   <distributionManagement>
83     <site>
84       <id>opendaylight-site</id>
85       <url>${nexus.site.url}/${project.artifactId}/</url>
86     </site>
87   </distributionManagement>
88 </project>