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