Added support for VPN Intent
[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   <dependencies>
22     <dependency>
23       <groupId>${project.groupId}</groupId>
24       <artifactId>vpnintent-api</artifactId>
25       <version>${project.version}</version>
26     </dependency>
27     <!-- Testing Dependencies -->
28     <dependency>
29       <groupId>junit</groupId>
30       <artifactId>junit</artifactId>
31       <scope>test</scope>
32     </dependency>
33
34     <dependency>
35       <groupId>org.mockito</groupId>
36       <artifactId>mockito-all</artifactId>
37       <scope>test</scope>
38     </dependency>
39   </dependencies>
40
41 </project>