65b7d7778c190992e806c45c497c9d5e50325797
[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.8.0-SNAPSHOT</version>
12   </parent>
13   <groupId>org.opendaylight.netvirt</groupId>
14   <artifactId>vpnservice</artifactId>
15   <version>0.4.0-SNAPSHOT</version>
16   <name>${project.artifactId}</name>
17   <packaging>pom</packaging>
18   <modelVersion>4.0.0</modelVersion>
19   <prerequisites>
20     <maven>3.1.1</maven>
21   </prerequisites>
22   <modules>
23     <module>commons/binding-parent</module>
24     <module>commons/config-parent</module>
25     <module>commons/it-parent</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>distribution/karaf</module>
38     <module>features</module>
39     <module>vpnservice-artifacts</module>
40     <module>statemanager</module>
41     <module>it</module>
42   </modules>
43
44   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
45   <build>
46     <plugins>
47       <plugin>
48         <groupId>org.apache.maven.plugins</groupId>
49         <artifactId>maven-deploy-plugin</artifactId>
50         <configuration>
51           <skip>true</skip>
52         </configuration>
53       </plugin>
54       <plugin>
55         <groupId>org.apache.maven.plugins</groupId>
56         <artifactId>maven-install-plugin</artifactId>
57         <configuration>
58           <skip>true</skip>
59         </configuration>
60       </plugin>
61     </plugins>
62   </build>
63   <scm>
64     <connection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</connection>
65     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
66     <url>https://wiki.opendaylight.org/view/NetVirt</url>
67     <tag>HEAD</tag>
68   </scm>
69
70   <!--
71       Maven Site Configuration
72
73       The following configuration is necessary for maven-site-plugin to
74       correctly identify the correct deployment path for OpenDaylight Maven
75       sites.
76   -->
77   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
78
79   <distributionManagement>
80     <site>
81       <id>opendaylight-site</id>
82       <url>${nexus.site.url}/${project.artifactId}/</url>
83     </site>
84   </distributionManagement>
85 </project>