Bump versions by x.(y+1).z for next dev cycle
[netvirt.git] / vpnservice / vpnmanager / vpnmanager-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3 Copyright (c) 2015 - 2016 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12     <parent>
13         <groupId>org.opendaylight.netvirt</groupId>
14         <artifactId>config-parent</artifactId>
15         <version>0.5.0-SNAPSHOT</version>
16         <relativePath>../../commons/config-parent</relativePath>
17     </parent>
18
19     <modelVersion>4.0.0</modelVersion>
20     <artifactId>vpnmanager-impl</artifactId>
21     <name>ODL :: netvirt :: ${project.artifactId}</name>
22     <packaging>bundle</packaging>
23     <dependencies>
24         <dependency>
25             <groupId>${project.groupId}</groupId>
26             <artifactId>vpnmanager-api</artifactId>
27             <version>${vpnservices.version}</version>
28         </dependency>
29         <dependency>
30             <groupId>${project.groupId}</groupId>
31             <artifactId>bgpmanager-api</artifactId>
32             <version>${vpnservices.version}</version>
33         </dependency>
34         <dependency>
35             <groupId>${project.groupId}</groupId>
36             <artifactId>fibmanager-api</artifactId>
37             <version>${vpnservices.version}</version>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.genius</groupId>
41             <artifactId>mdsalutil-api</artifactId>
42             <version>${genius.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.genius</groupId>
46             <artifactId>interfacemanager-api</artifactId>
47             <version>${genius.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.genius</groupId>
51             <artifactId>idmanager-api</artifactId>
52             <version>${genius.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.genius</groupId>
56             <artifactId>itm-api</artifactId>
57             <version>${genius.version}</version>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.genius</groupId>
61             <artifactId>arputil-api</artifactId>
62             <version>${genius.version}</version>
63         </dependency>
64         <dependency>
65             <groupId>${project.groupId}</groupId>
66             <artifactId>neutronvpn-api</artifactId>
67             <version>${vpnservices.version}</version>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.controller</groupId>
71             <artifactId>sal-binding-broker-impl</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>${project.groupId}</groupId>
75             <artifactId>elanmanager-api</artifactId>
76             <version>${vpnservices.version}</version>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.netvirt</groupId>
80             <artifactId>natservice-api</artifactId>
81             <version>${vpnservices.version}</version>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.genius</groupId>
85             <artifactId>lockmanager-api</artifactId>
86             <version>${genius.version}</version>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.infrautils</groupId>
90             <artifactId>counters-api</artifactId>
91             <version>${infrautils.version}</version>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.genius</groupId>
95             <artifactId>alivenessmonitor-api</artifactId>
96             <version>${genius.version}</version>
97         </dependency>
98     </dependencies>
99
100     <build>
101         <plugins>
102             <plugin>
103                 <groupId>org.codehaus.mojo</groupId>
104                 <artifactId>build-helper-maven-plugin</artifactId>
105                 <executions>
106                     <execution>
107                         <id>attach-artifacts</id>
108                         <goals>
109                             <goal>attach-artifact</goal>
110                         </goals>
111                         <phase>package</phase>
112                         <configuration>
113                             <artifacts>
114                                 <artifact>
115                                     <file>${project.build.directory}/classes/initial/netvirt-vpnmanager-config.xml</file>
116                                     <type>xml</type>
117                                     <classifier>config</classifier>
118                                 </artifact>
119                             </artifacts>
120                         </configuration>
121                     </execution>
122                 </executions>
123             </plugin>
124         </plugins>
125     </build>
126     <!--
127         Maven Site Configuration
128
129         The following configuration is necessary for maven-site-plugin to
130         correctly identify the correct deployment path for OpenDaylight Maven
131         sites.
132     -->
133     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
134
135     <distributionManagement>
136         <site>
137             <id>opendaylight-site</id>
138             <url>${nexus.site.url}/${project.artifactId}/</url>
139         </site>
140     </distributionManagement>
141 </project>