Add root pom for utils modules.
[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/parent</module>
33     <module>commons/integrationtest</module>
34     <module>distribution/opendaylight-karaf</module>
35     <module>features/ovsdb</module>
36     <module>features/ovs-sfc</module>
37     <!-- OVSDB Components -->
38     <module>library</module>
39     <module>northbound</module>
40     <module>openstack/net-virt</module>
41     <module>openstack/net-virt-providers</module>
42     <module>plugin</module>
43     <module>ovsdb-plugin-compatibility-layer</module>
44     <module>plugin-shell</module>
45     <module>schemas/hardwarevtep</module>
46     <module>schemas/openvswitch</module>
47     <module>southbound</module>
48     <module>utils</module>
49     <!-- Integration Tests -->
50     <module>integrationtest</module>
51   </modules>
52
53   <build>
54     <plugins>
55       <plugin>
56         <artifactId>maven-deploy-plugin</artifactId>
57         <configuration>
58           <skip>true</skip>
59         </configuration>
60       </plugin>
61     </plugins>
62   </build>
63
64   <scm>
65     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
66     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
67     <tag>HEAD</tag>
68     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
69   </scm>
70
71 </project>