Use mdsal's base IT classes
[ovsdb.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2014 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.ovsdb</groupId>
16     <artifactId>commons</artifactId>
17     <version>1.4.0-SNAPSHOT</version>
18     <relativePath>commons/parent</relativePath>
19   </parent>
20
21   <artifactId>ovsdb</artifactId>
22   <version>1.2.0-SNAPSHOT</version>
23   <name>${project.artifactId}</name> <!-- Used by Sonar to set project name -->
24   <packaging>pom</packaging>
25   <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>
26   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
27   <licenses>
28     <license>
29       <name>Eclipse Public License v1.0</name>
30       <url>http://www.eclipse.org/legal/epl-v10.html</url>
31     </license>
32   </licenses>
33   <developers>
34     <developer>
35       <name>Sam Hague</name>
36       <email>shague@gmail.com</email>
37       <url>https://github.com/shague</url>
38     </developer>
39   </developers>
40   <scm>
41     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
42     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
43     <tag>HEAD</tag>
44     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
45   </scm>
46
47   <prerequisites>
48     <maven>3.1.1</maven>
49   </prerequisites>
50
51   <modules>
52     <!-- Parent POM files -->
53     <module>commons</module>
54
55     <module>features</module>
56     <module>karaf</module>
57     <!-- OVSDB Components -->
58     <module>library</module>
59     <module>southbound</module>
60     <module>northbound</module>
61     <module>openstack</module>
62     <module>plugin</module>
63     <module>ovsdb-artifacts</module>
64     <module>ovsdb-plugin-compatibility-layer</module>
65     <module>plugin-shell</module>
66     <module>schemas</module>
67     <module>utils</module>
68     <module>ovsdb-ui</module>
69     <!-- Integration Tests -->
70     <module>integrationtest</module>
71   </modules>
72
73   <build>
74     <plugins>
75       <plugin>
76         <artifactId>maven-deploy-plugin</artifactId>
77         <configuration>
78           <skip>true</skip>
79         </configuration>
80       </plugin>
81     </plugins>
82   </build>
83
84 </project>