NETVIRT-1037: Upstream Fixes --- Review-1.
[netvirt.git] / vpnservice / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 - 2016 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10   <parent>
11     <groupId>org.opendaylight.odlparent</groupId>
12     <artifactId>odlparent-lite</artifactId>
13     <version>3.0.2</version>
14     <relativePath/>
15   </parent>
16   <groupId>org.opendaylight.netvirt</groupId>
17   <artifactId>vpnservice</artifactId>
18   <version>0.6.0-SNAPSHOT</version>
19   <name>ODL :: netvirt :: ${project.artifactId}</name>
20   <packaging>pom</packaging>
21   <modelVersion>4.0.0</modelVersion>
22   <modules>
23     <module>cache</module>
24     <module>coe</module>
25     <module>commons</module>
26     <module>model-bgp</module>
27     <module>vpnmanager</module>
28     <module>elanmanager</module>
29     <module>fibmanager</module>
30     <module>bgpmanager</module>
31     <module>neutronvpn</module>
32     <module>dhcpservice</module>
33     <module>cloud-servicechain</module>
34     <module>natservice</module>
35     <module>aclservice</module>
36     <module>ipv6service</module>
37     <module>qosservice</module>
38     <!--<module>policyservice</module>-->
39     <module>distribution/karaf</module>
40     <module>features</module>
41     <module>vpnservice-artifacts</module>
42     <module>statemanager</module>
43     <module>statistics</module>
44     <!--<module>ovsdb-ui</module>-->
45     <module>alarm</module>
46   </modules>
47
48   <profiles>
49     <profile>
50       <id>sfc</id>
51       <activation>
52         <activeByDefault>true</activeByDefault>
53       </activation>
54       <modules>
55         <module>sfc</module>
56         <module>vpnservice-sfc-artifacts</module>
57       </modules>
58     </profile>
59     <profile>
60       <!-- When enabled, this empty profile disables the “sfc” profile above -->
61       <id>no-sfc</id>
62     </profile>
63   </profiles>
64
65   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
66   <build>
67     <plugins>
68       <plugin>
69         <groupId>org.apache.maven.plugins</groupId>
70         <artifactId>maven-deploy-plugin</artifactId>
71         <configuration>
72           <skip>true</skip>
73         </configuration>
74       </plugin>
75       <plugin>
76         <groupId>org.apache.maven.plugins</groupId>
77         <artifactId>maven-install-plugin</artifactId>
78         <configuration>
79           <skip>true</skip>
80         </configuration>
81       </plugin>
82     </plugins>
83   </build>
84   <scm>
85     <connection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</connection>
86     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
87     <url>https://wiki.opendaylight.org/view/NetVirt</url>
88     <tag>HEAD</tag>
89   </scm>
90
91 </project>