Bump versions by 0.1.0 for next dev cycle
[vpnservice.git] / vpnintent / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2016 Inocybe Technologies 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 -->
8 <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">
9
10   <parent>
11     <groupId>org.opendaylight.vpnservice</groupId>
12     <artifactId>config-parent</artifactId>
13     <version>0.4.0-SNAPSHOT</version>
14     <relativePath>../../commons/config-parent</relativePath>
15   </parent>
16
17   <modelVersion>4.0.0</modelVersion>
18   <artifactId>vpnintent-impl</artifactId>
19   <version>${vpnservices.version}</version>
20   <packaging>bundle</packaging>
21
22   <properties>
23     <nic.version>1.3.0-SNAPSHOT</nic.version>
24   </properties>
25
26   <dependencies>
27     <dependency>
28       <groupId>${project.groupId}</groupId>
29       <artifactId>vpnintent-api</artifactId>
30       <version>${project.version}</version>
31     </dependency>
32
33     <!-- NIC dependency -->
34     <dependency>
35       <groupId>org.opendaylight.nic</groupId>
36       <artifactId>intent-api</artifactId>
37       <version>${nic.version}</version>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.nic</groupId>
41       <artifactId>intent-mapping-interface</artifactId>
42       <version>${nic.version}</version>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.nic</groupId>
46       <artifactId>utils</artifactId>
47       <version>${nic.version}</version>
48     </dependency>
49
50     <!-- Testing Dependencies -->
51     <dependency>
52       <groupId>junit</groupId>
53       <artifactId>junit</artifactId>
54       <scope>test</scope>
55     </dependency>
56
57     <dependency>
58       <groupId>org.mockito</groupId>
59       <artifactId>mockito-all</artifactId>
60       <scope>test</scope>
61     </dependency>
62     <dependency>
63       <groupId>org.powermock</groupId>
64       <artifactId>powermock-api-mockito</artifactId>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.powermock</groupId>
69       <artifactId>powermock-module-junit4</artifactId>
70       <scope>test</scope>
71     </dependency>
72
73   </dependencies>
74
75 </project>