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