Bump versions by 0.1.0 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10
11   <parent>
12     <groupId>org.opendaylight.netvirt</groupId>
13     <artifactId>config-parent</artifactId>
14     <version>0.4.0-SNAPSHOT</version>
15     <relativePath>../../commons/config-parent</relativePath>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.netvirt</groupId>
20   <artifactId>vpnmanager-impl</artifactId>
21   <version>${vpnservices.version}</version>
22   
23   <packaging>bundle</packaging>
24   <dependencies>
25     <dependency>
26       <groupId>${project.groupId}</groupId>
27       <artifactId>vpnmanager-api</artifactId>
28       <version>${vpnservices.version}</version>
29     </dependency>
30     <dependency>
31       <groupId>${project.groupId}</groupId>
32       <artifactId>bgpmanager-api</artifactId>
33       <version>${vpnservices.version}</version>
34     </dependency>
35     <dependency>
36       <groupId>${project.groupId}</groupId>
37       <artifactId>fibmanager-api</artifactId>
38       <version>${vpnservices.version}</version>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.genius</groupId>
42       <artifactId>mdsalutil-api</artifactId>
43       <version>${genius.version}</version>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.genius</groupId>
47       <artifactId>interfacemanager-api</artifactId>
48       <version>${genius.version}</version>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.genius</groupId>
52       <artifactId>idmanager-api</artifactId>
53       <version>${genius.version}</version>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.genius</groupId>
57       <artifactId>itm-api</artifactId>
58       <version>${genius.version}</version>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.genius</groupId>
62       <artifactId>arputil-api</artifactId>
63       <version>${genius.version}</version>
64     </dependency>
65     <dependency>
66       <groupId>${project.groupId}</groupId>
67       <artifactId>neutronvpn-api</artifactId>
68       <version>${vpnservices.version}</version>
69       </dependency>
70     <dependency>
71       <groupId>org.opendaylight.controller</groupId>
72       <artifactId>sal-binding-broker-impl</artifactId>
73     </dependency>
74     <!--dependency>
75       <groupId>org.opendaylight.vpnservice</groupId>
76       <artifactId>lockmanager-api</artifactId>
77       <version>${vpnservices.version}</version>
78     </dependency-->
79     <dependency>
80       <groupId>${project.groupId}</groupId>
81       <artifactId>elanmanager-api</artifactId>
82       <version>${vpnservices.version}</version>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.netvirt</groupId>
86       <artifactId>natservice-api</artifactId>
87       <version>${vpnservices.version}</version>
88     </dependency>
89   </dependencies>
90
91   <!--
92       Maven Site Configuration
93
94       The following configuration is necessary for maven-site-plugin to
95       correctly identify the correct deployment path for OpenDaylight Maven
96       sites.
97   -->
98   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
99
100   <distributionManagement>
101     <site>
102       <id>opendaylight-site</id>
103       <url>${nexus.site.url}/${project.artifactId}/</url>
104     </site>
105   </distributionManagement>
106 </project>