Merge "Implement VxLAN-GPE tunnels in Genius"
[genius.git] / mdsalutil / mdsalutil-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.genius</groupId>
14     <artifactId>config-parent</artifactId>
15     <version>0.1.0-SNAPSHOT</version>
16     <relativePath>../../commons/config-parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.genius</groupId>
20   <artifactId>mdsalutil-impl</artifactId>
21   <version>0.1.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23
24   <dependencies>
25     <dependency>
26       <groupId>org.opendaylight.controller</groupId>
27       <artifactId>sal-binding-api</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.openflowplugin.model</groupId>
31       <artifactId>model-flow-base</artifactId>
32       <version>${openflowplugin.version}</version>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.openflowplugin.model</groupId>
36       <artifactId>model-flow-service</artifactId>
37       <version>${openflowplugin.version}</version>
38     </dependency>
39     <!--  TEST Dependencies -->
40     <dependency>
41       <groupId>org.powermock</groupId>
42       <artifactId>powermock-module-junit4</artifactId>
43       <scope>test</scope>
44     </dependency>
45     <dependency>
46       <groupId>org.powermock</groupId>
47       <artifactId>powermock-api-mockito</artifactId>
48       <scope>test</scope>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.controller</groupId>
52       <artifactId>sal-binding-broker-impl</artifactId>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.controller</groupId>
57       <artifactId>sal-binding-broker-impl</artifactId>
58       <version>${mdsal.version}</version>
59       <scope>test</scope>
60       <type>test-jar</type>
61     </dependency>
62     <dependency>
63       <groupId>${project.groupId}</groupId>
64       <artifactId>mdsalutil-api</artifactId>
65       <version>${project.version}</version>
66     </dependency>
67   </dependencies>
68 </project>