Migrate to odlparent 1.9.0
[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>1.9.0</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     <module>federation-plugin</module>
37     <module>policyservice</module>
38     <module>distribution/karaf</module>
39     <module>features</module>
40     <module>vpnservice-artifacts</module>
41     <module>statemanager</module>
42     <module>statistics</module>
43     <module>sfc</module>
44     <module>ovsdb-ui</module>
45   </modules>
46
47   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
48   <build>
49     <plugins>
50       <plugin>
51         <groupId>org.apache.maven.plugins</groupId>
52         <artifactId>maven-deploy-plugin</artifactId>
53         <configuration>
54           <skip>true</skip>
55         </configuration>
56       </plugin>
57       <plugin>
58         <groupId>org.apache.maven.plugins</groupId>
59         <artifactId>maven-install-plugin</artifactId>
60         <configuration>
61           <skip>true</skip>
62         </configuration>
63       </plugin>
64     </plugins>
65   </build>
66   <scm>
67     <connection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</connection>
68     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
69     <url>https://wiki.opendaylight.org/view/NetVirt</url>
70     <tag>HEAD</tag>
71   </scm>
72
73   <!--
74       Maven Site Configuration
75
76       The following configuration is necessary for maven-site-plugin to
77       correctly identify the correct deployment path for OpenDaylight Maven
78       sites.
79   -->
80   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
81
82   <distributionManagement>
83     <site>
84       <id>opendaylight-site</id>
85       <url>${nexus.site.url}/${project.artifactId}/</url>
86     </site>
87   </distributionManagement>
88 </project>