Bump odlparent version to 5.0.0
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10
11     <parent>
12         <groupId>org.opendaylight.odlparent</groupId>
13         <artifactId>odlparent-lite</artifactId>
14         <version>5.0.0</version>
15         <relativePath/>
16     </parent>
17
18     <groupId>org.opendaylight.netvirt</groupId>
19     <artifactId>netvirt-aggregator</artifactId>
20     <version>0.9.0-SNAPSHOT</version>
21     <name>netvirt</name> <!-- Used by Sonar to set project name -->
22     <packaging>pom</packaging>
23     <modelVersion>4.0.0</modelVersion>
24
25     <description>The NetVirt project is a project for OpenDaylight that implements a network virtualization
26         implementation.
27     </description>
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/netvirt.git</connection>
43         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
44         <tag>HEAD</tag>
45         <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
46     </scm>
47
48     <modules>
49         <module>aclservice</module>
50         <module>alarm</module>
51         <module>artifacts</module>
52         <module>bgpmanager</module>
53         <module>cache</module>
54         <module>coe</module>
55         <module>commons</module>
56         <module>dhcpservice</module>
57         <module>elanmanager</module>
58         <module>features</module>
59         <module>fibmanager</module>
60         <module>ipv6service</module>
61         <module>karaf</module>
62         <module>model-bgp</module>
63         <module>natservice</module>
64         <module>neutronvpn</module>
65         <module>qosservice</module>
66         <module>statemanager</module>
67         <module>vpnmanager</module>
68     </modules>
69
70     <profiles>
71         <profile>
72             <id>sfc</id>
73             <activation>
74                 <activeByDefault>true</activeByDefault>
75             </activation>
76             <modules>
77                 <module>sfc</module>
78             </modules>
79         </profile>
80         <profile>
81             <!-- When enabled, this empty profile disables the “sfc” profile above -->
82             <id>no-sfc</id>
83         </profile>
84         <profile>
85             <id>sonar-jacoco-aggregate</id>
86             <activation>
87                 <property>
88                     <name>odl.jacoco.aggregateFile</name>
89                 </property>
90             </activation>
91             <build>
92                 <plugins>
93                     <plugin>
94                         <groupId>org.jacoco</groupId>
95                         <artifactId>jacoco-maven-plugin</artifactId>
96                         <executions>
97                             <execution>
98                                 <id>merge</id>
99                                 <goals>
100                                     <goal>merge</goal>
101                                 </goals>
102                                 <phase>generate-resources</phase>
103                                 <configuration>
104                                     <destFile>${odl.jacoco.aggregateFile}</destFile>
105                                     <fileSets>
106                                         <fileSet>
107                                             <directory>${project.basedir}</directory>
108                                             <includes>
109                                                 <include>**/target/code-coverage/*.exec</include>
110                                             </includes>
111                                         </fileSet>
112                                     </fileSets>
113                                 </configuration>
114                             </execution>
115                         </executions>
116                     </plugin>
117                 </plugins>
118             </build>
119         </profile>
120     </profiles>
121
122     <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
123     <build>
124         <plugins>
125             <plugin>
126                 <groupId>org.apache.maven.plugins</groupId>
127                 <artifactId>maven-deploy-plugin</artifactId>
128                 <configuration>
129                     <skip>true</skip>
130                 </configuration>
131             </plugin>
132             <plugin>
133                 <groupId>org.apache.maven.plugins</groupId>
134                 <artifactId>maven-install-plugin</artifactId>
135                 <configuration>
136                     <skip>true</skip>
137                 </configuration>
138             </plugin>
139         </plugins>
140     </build>
141 </project>