53b9f9bfee710f1ca7d375acf770b470c7a91619
[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>8.1.0</version>
15         <relativePath/>
16     </parent>
17
18     <groupId>org.opendaylight.netvirt</groupId>
19     <artifactId>netvirt-aggregator</artifactId>
20     <version>0.12.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     <properties>
49         <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
50         <maven.deploy.skip>true</maven.deploy.skip>
51         <maven.install.skip>true</maven.install.skip>
52
53     </properties>
54
55     <modules>
56         <module>aclservice</module>
57         <module>alarm</module>
58         <module>artifacts</module>
59         <module>bgpmanager</module>
60         <module>cache</module>
61         <module>commons</module>
62         <module>dhcpservice</module>
63         <module>elanmanager</module>
64         <module>features</module>
65         <module>fibmanager</module>
66         <module>ipv6service</module>
67         <module>karaf</module>
68         <module>model-bgp</module>
69         <module>natservice</module>
70         <module>neutronvpn</module>
71         <module>qosservice</module>
72         <module>statemanager</module>
73         <module>vpnmanager</module>
74     </modules>
75
76     <build>
77         <pluginManagement>
78             <plugins>
79                 <plugin>
80                     <!-- Downgrade javadoc plugin, as 3.1.0+ breaks with maven.compiler.release=11 + javadoc:aggregate -->
81                     <artifactId>maven-javadoc-plugin</artifactId>
82                     <version>3.0.1</version>
83                 </plugin>
84             </plugins>
85         </pluginManagement>
86     </build>
87
88     <profiles>
89         <profile>
90             <id>sonar-jacoco-aggregate</id>
91             <activation>
92                 <property>
93                     <name>odl.jacoco.aggregateFile</name>
94                 </property>
95             </activation>
96             <build>
97                 <plugins>
98                     <plugin>
99                         <groupId>org.jacoco</groupId>
100                         <artifactId>jacoco-maven-plugin</artifactId>
101                         <executions>
102                             <execution>
103                                 <id>merge</id>
104                                 <goals>
105                                     <goal>merge</goal>
106                                 </goals>
107                                 <phase>generate-resources</phase>
108                                 <configuration>
109                                     <destFile>${odl.jacoco.aggregateFile}</destFile>
110                                     <fileSets>
111                                         <fileSet>
112                                             <directory>${project.basedir}</directory>
113                                             <includes>
114                                                 <include>**/target/code-coverage/*.exec</include>
115                                             </includes>
116                                         </fileSet>
117                                     </fileSets>
118                                 </configuration>
119                             </execution>
120                         </executions>
121                     </plugin>
122                 </plugins>
123             </build>
124         </profile>
125     </profiles>
126
127 </project>