Bump versions by x.(y+1).z for next dev cycle
[netvirt.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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12     <parent>
13         <groupId>org.opendaylight.odlparent</groupId>
14         <artifactId>odlparent-lite</artifactId>
15         <version>3.0.2</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.netvirt</groupId>
20     <artifactId>netvirt-aggregator</artifactId>
21     <version>0.7.0-SNAPSHOT</version>
22     <name>ODL :: netvirt :: ${project.artifactId}</name>
23     <packaging>pom</packaging>
24     <modelVersion>4.0.0</modelVersion>
25
26     <description>The NetVirt project is a project for OpenDaylight that implements a network virtualization
27         implementation.
28     </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/netvirt.git</connection>
44         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
45         <tag>HEAD</tag>
46         <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
47     </scm>
48
49     <modules>
50         <module>aclservice</module>
51         <module>alarm</module>
52         <module>artifacts</module>
53         <module>bgpmanager</module>
54         <module>cache</module>
55         <module>cloud-servicechain</module>
56         <module>coe</module>
57         <module>commons</module>
58         <module>dhcpservice</module>
59         <module>elanmanager</module>
60         <module>features</module>
61         <module>fibmanager</module>
62         <module>ipv6service</module>
63         <module>karaf</module>
64         <module>model-bgp</module>
65         <module>natservice</module>
66         <module>neutronvpn</module>
67         <module>qosservice</module>
68         <module>statemanager</module>
69         <module>statistics</module>
70         <module>vpnmanager</module>
71     </modules>
72
73     <profiles>
74         <profile>
75             <id>sfc</id>
76             <activation>
77                 <activeByDefault>true</activeByDefault>
78             </activation>
79             <modules>
80                 <module>sfc</module>
81                 <module>sfc-artifacts</module>
82             </modules>
83         </profile>
84         <profile>
85             <!-- When enabled, this empty profile disables the “sfc” profile above -->
86             <id>no-sfc</id>
87         </profile>
88     </profiles>
89
90     <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
91     <build>
92         <plugins>
93             <plugin>
94                 <groupId>org.apache.maven.plugins</groupId>
95                 <artifactId>maven-deploy-plugin</artifactId>
96                 <configuration>
97                     <skip>true</skip>
98                 </configuration>
99             </plugin>
100             <plugin>
101                 <groupId>org.apache.maven.plugins</groupId>
102                 <artifactId>maven-install-plugin</artifactId>
103                 <configuration>
104                     <skip>true</skip>
105                 </configuration>
106             </plugin>
107         </plugins>
108     </build>
109 </project>