MappingServiceManager: pass VPN info to intents
[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   </properties>
25
26   <dependencies>
27     <dependency>
28       <groupId>org.opendaylight.vpnservice</groupId>
29       <artifactId>mdsalutil-api</artifactId>
30       <version>${project.version}</version>
31     </dependency>
32     <dependency>
33       <groupId>${project.groupId}</groupId>
34       <artifactId>vpnintent-api</artifactId>
35       <version>${project.version}</version>
36     </dependency>
37     <!-- Testing Dependencies -->
38     <dependency>
39       <groupId>junit</groupId>
40       <artifactId>junit</artifactId>
41       <scope>test</scope>
42     </dependency>
43
44     <dependency>
45       <groupId>org.mockito</groupId>
46       <artifactId>mockito-all</artifactId>
47       <scope>test</scope>
48     </dependency>
49
50     <dependency>
51       <groupId>org.opendaylight.nic</groupId>
52       <artifactId>intent-mapping-interface</artifactId>
53       <version>${nic.version}</version>
54     </dependency>
55   </dependencies>
56
57 </project>