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