Bump versions by 0.1.0 for next dev cycle
[netvirt.git] / vpnservice / cloud-servicechain / cloud-servicechain-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!-- Copyright (c) 2015 Ericsson India Global Services Pvt Ltd. and others.
3  All rights reserved. This program and the accompanying materials are made
4  available under the terms of the Eclipse Public License v1.0 which accompanies
5  this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8
9  <parent>
10   <groupId>org.opendaylight.netvirt</groupId>
11   <artifactId>config-parent</artifactId>
12   <version>0.4.0-SNAPSHOT</version>
13   <relativePath>../../commons/config-parent</relativePath>
14  </parent>
15
16  <modelVersion>4.0.0</modelVersion>
17  <groupId>org.opendaylight.netvirt</groupId>
18  <artifactId>cloud-servicechain-impl</artifactId>
19  <version>${vpnservices.version}</version>
20  <packaging>bundle</packaging>
21
22  <properties>
23   <powermock.version>1.6.4</powermock.version>
24   <mockitoall.version>1.10.19</mockitoall.version>
25  </properties>
26
27
28  <dependencies>
29   <dependency>
30    <groupId>${project.groupId}</groupId>
31    <artifactId>cloud-servicechain-api</artifactId>
32    <version>${vpnservices.version}</version>
33   </dependency>
34   <dependency>
35    <groupId>org.opendaylight.netvirt</groupId>
36    <artifactId>vpnmanager-impl</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.controller</groupId>
46    <artifactId>sal-binding-broker-impl</artifactId>
47   </dependency>
48   <dependency>
49    <groupId>org.opendaylight.netvirt</groupId>
50    <artifactId>vpnmanager-api</artifactId>
51    <version>${vpnservices.version}</version>
52   </dependency>
53   <dependency>
54    <groupId>org.opendaylight.netvirt</groupId>
55    <artifactId>elanmanager-api</artifactId>
56    <version>${vpnservices.version}</version>
57   </dependency>
58   <dependency>
59    <groupId>org.opendaylight.netvirt</groupId>
60    <artifactId>fibmanager-api</artifactId>
61    <version>${vpnservices.version}</version>
62   </dependency>
63   <dependency>
64    <groupId>org.opendaylight.genius</groupId>
65    <artifactId>idmanager-api</artifactId>
66    <version>${genius.version}</version>
67   </dependency>
68    <dependency>
69     <groupId>org.opendaylight.genius</groupId>
70     <artifactId>interfacemanager-api</artifactId>
71     <version>${genius.version}</version>
72    </dependency>
73   <dependency>
74    <groupId>${project.groupId}</groupId>
75    <artifactId>bgpmanager-api</artifactId>
76    <version>${vpnservices.version}</version>
77   </dependency>
78   <!-- Only for unit-test -->
79   <dependency>
80    <groupId>org.mockito</groupId>
81    <artifactId>mockito-all</artifactId>
82    <version>${mockitoall.version}</version>
83    <scope>test</scope>
84   </dependency>
85   <dependency>
86    <groupId>org.powermock</groupId>
87    <artifactId>powermock-api-mockito</artifactId>
88    <version>${powermock.version}</version>
89    <scope>test</scope>
90   </dependency>
91   <dependency>
92    <groupId>org.powermock</groupId>
93    <artifactId>powermock-module-junit4</artifactId>
94    <version>${powermock.version}</version>
95    <scope>test</scope>
96   </dependency>
97  </dependencies>
98
99 </project>