Bug-2658 - Remove adsal and migrate to mdsal
[netvirt.git] / utils / mdsal-openflow / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5   <parent>
6     <artifactId>commons</artifactId>
7     <groupId>org.opendaylight.ovsdb</groupId>
8     <version>1.3.0-SNAPSHOT</version>
9     <relativePath>../../commons/parent/pom.xml</relativePath>
10   </parent>
11   <modelVersion>4.0.0</modelVersion>
12
13   <artifactId>utils.mdsal-openflow</artifactId>
14   <name>OpenDaylight OVS utility for md-sal based OpenFlow</name>
15   <version>1.1.0-SNAPSHOT</version>
16   <packaging>jar</packaging>
17
18   <dependencies>
19     <!-- Yang Models -->
20     <dependency>
21       <groupId>org.opendaylight.yangtools.model</groupId>
22       <artifactId>ietf-inet-types</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.controller.model</groupId>
26       <artifactId>model-inventory</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.controller.model</groupId>
30       <artifactId>model-flow-base</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.yangtools.model</groupId>
34       <artifactId>ietf-yang-types</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.yangtools.model</groupId>
38       <artifactId>opendaylight-l2-types</artifactId>
39     </dependency>
40     <!-- Controller Dependencies -->
41     <dependency>
42       <groupId>org.opendaylight.openflowplugin</groupId>
43       <artifactId>openflowjava-extension-nicira</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.openflowplugin</groupId>
47       <artifactId>openflowplugin-extension-api</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.openflowplugin</groupId>
51       <artifactId>openflowplugin-extension-nicira</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>com.google.guava</groupId>
55       <artifactId>guava</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.slf4j</groupId>
59       <artifactId>slf4j-api</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>junit</groupId>
63       <artifactId>junit</artifactId>
64       <scope>test</scope>
65     </dependency>
66   </dependencies>
67   <build>
68     <plugins>
69       <plugin>
70         <groupId>org.apache.maven.plugins</groupId>
71         <artifactId>maven-checkstyle-plugin</artifactId>
72       </plugin>
73       <plugin>
74         <groupId>org.jacoco</groupId>
75         <artifactId>jacoco-maven-plugin</artifactId>
76       </plugin>
77     </plugins>
78   </build>
79 </project>