Fix netvirt sonar
[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>4.0.5</version>
15         <relativePath/>
16     </parent>
17
18     <groupId>org.opendaylight.netvirt</groupId>
19     <artifactId>netvirt-aggregator</artifactId>
20     <version>0.8.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     </profiles>
85
86     <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
87     <build>
88         <plugins>
89             <plugin>
90                 <groupId>org.apache.maven.plugins</groupId>
91                 <artifactId>maven-deploy-plugin</artifactId>
92                 <configuration>
93                     <skip>true</skip>
94                 </configuration>
95             </plugin>
96             <plugin>
97                 <groupId>org.apache.maven.plugins</groupId>
98                 <artifactId>maven-install-plugin</artifactId>
99                 <configuration>
100                     <skip>true</skip>
101                 </configuration>
102             </plugin>
103         </plugins>
104     </build>
105 </project>