Remove COE Dependencies
[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.0</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     <modules>
49         <module>aclservice</module>
50         <module>alarm</module>
51         <module>artifacts</module>
52         <module>bgpmanager</module>
53         <module>cache</module>
54         <module>commons</module>
55         <module>dhcpservice</module>
56         <module>elanmanager</module>
57         <module>features</module>
58         <module>fibmanager</module>
59         <module>ipv6service</module>
60         <module>karaf</module>
61         <module>model-bgp</module>
62         <module>natservice</module>
63         <module>neutronvpn</module>
64         <module>qosservice</module>
65         <module>statemanager</module>
66         <module>vpnmanager</module>
67     </modules>
68
69     <profiles>
70         <profile>
71             <id>sfc</id>
72             <activation>
73                 <activeByDefault>true</activeByDefault>
74             </activation>
75             <modules>
76                 <module>sfc</module>
77             </modules>
78         </profile>
79         <profile>
80             <!-- When enabled, this empty profile disables the “sfc” profile above -->
81             <id>no-sfc</id>
82         </profile>
83         <profile>
84             <id>sonar-jacoco-aggregate</id>
85             <activation>
86                 <property>
87                     <name>odl.jacoco.aggregateFile</name>
88                 </property>
89             </activation>
90             <build>
91                 <plugins>
92                     <plugin>
93                         <groupId>org.jacoco</groupId>
94                         <artifactId>jacoco-maven-plugin</artifactId>
95                         <executions>
96                             <execution>
97                                 <id>merge</id>
98                                 <goals>
99                                     <goal>merge</goal>
100                                 </goals>
101                                 <phase>generate-resources</phase>
102                                 <configuration>
103                                     <destFile>${odl.jacoco.aggregateFile}</destFile>
104                                     <fileSets>
105                                         <fileSet>
106                                             <directory>${project.basedir}</directory>
107                                             <includes>
108                                                 <include>**/target/code-coverage/*.exec</include>
109                                             </includes>
110                                         </fileSet>
111                                     </fileSets>
112                                 </configuration>
113                             </execution>
114                         </executions>
115                     </plugin>
116                 </plugins>
117             </build>
118         </profile>
119     </profiles>
120
121     <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
122     <build>
123         <plugins>
124             <plugin>
125                 <groupId>org.apache.maven.plugins</groupId>
126                 <artifactId>maven-deploy-plugin</artifactId>
127                 <configuration>
128                     <skip>true</skip>
129                 </configuration>
130             </plugin>
131             <plugin>
132                 <groupId>org.apache.maven.plugins</groupId>
133                 <artifactId>maven-install-plugin</artifactId>
134                 <configuration>
135                     <skip>true</skip>
136                 </configuration>
137             </plugin>
138         </plugins>
139     </build>
140 </project>