Merge "Remove commons/parent bundle"
[netvirt.git] / commons / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2015 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.6.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>parents</artifactId>
23   <version>1.2.1-SNAPSHOT</version>
24   <name>${project.artifactId}</name>
25   <packaging>pom</packaging>
26   <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>
27   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
28   <licenses>
29     <license>
30       <name>Eclipse Public License v1.0</name>
31       <url>http://www.eclipse.org/legal/epl-v10.html</url>
32     </license>
33   </licenses>
34   <developers>
35     <developer>
36       <name>Sam Hague</name>
37       <email>shague@gmail.com</email>
38       <url>https://github.com/shague</url>
39     </developer>
40   </developers>
41   <scm>
42     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
43     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
44     <tag>HEAD</tag>
45     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
46   </scm>
47
48   <prerequisites>
49     <maven>3.1.1</maven>
50   </prerequisites>
51   <modules>
52     <module>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 </project>