DHCP Handling for TOR VM
[vpnservice.git] / 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   <groupId>org.opendaylight.vpnservice</groupId>
9   <artifactId>vpnservice</artifactId>
10   <version>0.3.0-SNAPSHOT</version>
11   <name>${project.artifactId}</name>
12   <packaging>pom</packaging>
13   <modelVersion>4.0.0</modelVersion>
14   <prerequisites>
15     <maven>3.1.1</maven>
16   </prerequisites>
17   <modules>
18     <module>commons/binding-parent</module>
19     <module>commons/config-parent</module>
20     <module>model-bgp</module>
21     <module>mdsalutil</module>
22     <module>lockmanager</module>
23     <module>idmanager</module>
24     <module>arputil</module>
25     <module>vpnmanager</module>
26     <module>interfacemgr</module>
27     <module>alivenessmonitor</module>
28     <module>elanmanager</module>
29     <module>fibmanager</module>
30     <module>bgpmanager</module>
31     <module>neutronvpn</module>
32     <module>dhcpservice</module>
33     <module>itm</module>
34     <module>natservice</module>
35     <module>distribution/karaf</module>
36     <module>features</module>
37     <module>vpnservice-artifacts</module>
38     <module>vpnintent</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/vpnservice.git</connection>
62     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/vpnservice.git</developerConnection>
63     <url>https://wiki.opendaylight.org/view/VPNService:Main</url>
64     <tag>HEAD</tag>
65   </scm>
66 </project>