temp rm netvirt-sfc feature while sfc is busted
[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>2.0.2</version>
14     <relativePath/>
15   </parent>
16   <groupId>org.opendaylight.netvirt</groupId>
17   <artifactId>vpnservice</artifactId>
18   <version>0.5.0-SNAPSHOT</version>
19   <name>ODL :: netvirt :: ${project.artifactId}</name>
20   <packaging>pom</packaging>
21   <modelVersion>4.0.0</modelVersion>
22   <modules>
23     <module>commons</module>
24     <module>model-bgp</module>
25     <module>vpnmanager</module>
26     <module>elanmanager</module>
27     <module>fibmanager</module>
28     <module>bgpmanager</module>
29     <module>neutronvpn</module>
30     <module>dhcpservice</module>
31     <module>cloud-servicechain</module>
32     <module>natservice</module>
33     <module>aclservice</module>
34     <module>ipv6service</module>
35     <module>qosservice</module>
36     <!-- Federation isn’t part of Nitrogen
37     <module>federation-plugin</module>
38     -->
39     <module>policyservice</module>
40     <module>distribution/karaf</module>
41     <module>features</module>
42     <module>vpnservice-artifacts</module>
43     <module>statemanager</module>
44     <module>statistics</module>
45     <!--<module>sfc</module>-->
46     <module>ovsdb-ui</module>
47   </modules>
48
49   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
50   <build>
51     <plugins>
52       <plugin>
53         <groupId>org.apache.maven.plugins</groupId>
54         <artifactId>maven-deploy-plugin</artifactId>
55         <configuration>
56           <skip>true</skip>
57         </configuration>
58       </plugin>
59       <plugin>
60         <groupId>org.apache.maven.plugins</groupId>
61         <artifactId>maven-install-plugin</artifactId>
62         <configuration>
63           <skip>true</skip>
64         </configuration>
65       </plugin>
66     </plugins>
67   </build>
68   <scm>
69     <connection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</connection>
70     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
71     <url>https://wiki.opendaylight.org/view/NetVirt</url>
72     <tag>HEAD</tag>
73   </scm>
74
75   <!--
76       Maven Site Configuration
77
78       The following configuration is necessary for maven-site-plugin to
79       correctly identify the correct deployment path for OpenDaylight Maven
80       sites.
81   -->
82   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
83
84   <distributionManagement>
85     <site>
86       <id>opendaylight-site</id>
87       <url>${nexus.site.url}/${project.artifactId}/</url>
88     </site>
89   </distributionManagement>
90 </project>