Merge "Move ovsdb distribution to use karaf-parent"
[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.3.0-SNAPSHOT</version>
18     <relativePath>commons/parent</relativePath>
19   </parent>
20
21   <artifactId>ovsdb</artifactId>
22   <version>1.1.0-SNAPSHOT</version>
23   <name>${project.artifactId}</name> <!-- Used by Sonar to set project name -->
24   <packaging>pom</packaging>
25
26   <prerequisites>
27     <maven>3.1.1</maven>
28   </prerequisites>
29
30   <modules>
31     <!-- Parent POM files -->
32     <module>commons</module>
33     <module>features</module>
34     <module>karaf</module>
35     <!-- OVSDB Components -->
36     <module>library</module>
37     <module>northbound</module>
38     <module>openstack</module>
39     <module>plugin</module>
40     <module>ovsdb-artifacts</module>
41     <module>ovsdb-plugin-compatibility-layer</module>
42     <module>plugin-shell</module>
43     <module>schemas</module>
44     <module>southbound</module>
45     <module>utils</module>
46     <!-- Integration Tests -->
47     <module>integrationtest</module>
48   </modules>
49
50   <build>
51     <plugins>
52       <plugin>
53         <artifactId>maven-deploy-plugin</artifactId>
54         <configuration>
55           <skip>true</skip>
56         </configuration>
57       </plugin>
58     </plugins>
59   </build>
60
61   <scm>
62     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
63     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
64     <tag>HEAD</tag>
65     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
66   </scm>
67
68 </project>