f69f9c82742134e11f58da373e2bb853d7d1a16b
[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.3.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.2.0-SNAPSHOT</nic.version>
24     <powermock.version>1.5.2</powermock.version>
25   </properties>
26
27   <dependencies>
28     <dependency>
29       <groupId>${project.groupId}</groupId>
30       <artifactId>vpnintent-api</artifactId>
31       <version>${project.version}</version>
32     </dependency>
33
34     <!-- NIC dependency -->
35     <dependency>
36       <groupId>org.opendaylight.nic</groupId>
37       <artifactId>intent-api</artifactId>
38       <version>${nic.version}</version>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.nic</groupId>
42       <artifactId>intent-mapping-interface</artifactId>
43       <version>${nic.version}</version>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.nic</groupId>
47       <artifactId>utils</artifactId>
48       <version>${nic.version}</version>
49     </dependency>
50
51     <!-- Testing Dependencies -->
52     <dependency>
53       <groupId>junit</groupId>
54       <artifactId>junit</artifactId>
55       <scope>test</scope>
56     </dependency>
57
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>