disable building sfc features
[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>3.1.0</version>
15         <relativePath/>
16     </parent>
17
18     <groupId>org.opendaylight.netvirt</groupId>
19     <artifactId>netvirt-aggregator</artifactId>
20     <version>0.7.0-SNAPSHOT</version>
21     <name>ODL :: netvirt :: ${project.artifactId}</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>cloud-servicechain</module>
55         <module>coe</module>
56         <module>commons</module>
57         <module>dhcpservice</module>
58         <module>elanmanager</module>
59         <module>features</module>
60         <module>fibmanager</module>
61         <module>ipv6service</module>
62         <module>karaf</module>
63         <module>model-bgp</module>
64         <module>natservice</module>
65         <module>neutronvpn</module>
66         <module>qosservice</module>
67         <module>statemanager</module>
68         <module>statistics</module>
69         <module>vpnmanager</module>
70     </modules>
71
72     <profiles>
73         <profile>
74             <id>sfc</id>
75             <activation>
76                 <activeByDefault>false</activeByDefault>
77             </activation>
78             <modules>
79                 <module>sfc</module>
80             </modules>
81         </profile>
82         <profile>
83             <!-- When enabled, this empty profile disables the “sfc” profile above -->
84             <id>no-sfc</id>
85         </profile>
86     </profiles>
87
88     <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
89     <build>
90         <plugins>
91             <plugin>
92                 <groupId>org.apache.maven.plugins</groupId>
93                 <artifactId>maven-deploy-plugin</artifactId>
94                 <configuration>
95                     <skip>true</skip>
96                 </configuration>
97             </plugin>
98             <plugin>
99                 <groupId>org.apache.maven.plugins</groupId>
100                 <artifactId>maven-install-plugin</artifactId>
101                 <configuration>
102                     <skip>true</skip>
103                 </configuration>
104             </plugin>
105         </plugins>
106     </build>
107 </project>