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