Enhancements in BGP module
[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>6.0.1</version>
15         <relativePath/>
16     </parent>
17
18     <groupId>org.opendaylight.netvirt</groupId>
19     <artifactId>netvirt-aggregator</artifactId>
20     <version>0.10.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>sfc</id>
91             <activation>
92                 <activeByDefault>true</activeByDefault>
93             </activation>
94             <modules>
95                 <module>sfc</module>
96             </modules>
97         </profile>
98         <profile>
99             <!-- When enabled, this empty profile disables the “sfc” profile above -->
100             <id>no-sfc</id>
101         </profile>
102         <profile>
103             <id>sonar-jacoco-aggregate</id>
104             <activation>
105                 <property>
106                     <name>odl.jacoco.aggregateFile</name>
107                 </property>
108             </activation>
109             <build>
110                 <plugins>
111                     <plugin>
112                         <groupId>org.jacoco</groupId>
113                         <artifactId>jacoco-maven-plugin</artifactId>
114                         <executions>
115                             <execution>
116                                 <id>merge</id>
117                                 <goals>
118                                     <goal>merge</goal>
119                                 </goals>
120                                 <phase>generate-resources</phase>
121                                 <configuration>
122                                     <destFile>${odl.jacoco.aggregateFile}</destFile>
123                                     <fileSets>
124                                         <fileSet>
125                                             <directory>${project.basedir}</directory>
126                                             <includes>
127                                                 <include>**/target/code-coverage/*.exec</include>
128                                             </includes>
129                                         </fileSet>
130                                     </fileSets>
131                                 </configuration>
132                             </execution>
133                         </executions>
134                     </plugin>
135                 </plugins>
136             </build>
137         </profile>
138     </profiles>
139
140 </project>