29669b377fad688f604d468396536d2dad4d5dd3
[ovsdb.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</groupId>
22       <artifactId>yang-binding</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.yangtools.model</groupId>
26       <artifactId>ietf-inet-types</artifactId>
27       <version>2010.09.24.7-SNAPSHOT</version>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.controller.model</groupId>
31       <artifactId>model-inventory</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.controller.model</groupId>
35       <artifactId>model-flow-service</artifactId>
36     </dependency>
37     <!-- Controller Dependencies -->
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>sal-binding-api</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.controller</groupId>
44       <artifactId>sal</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>sal-compatibility</artifactId>
49       <version>${mdsal.version}</version>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.ovsdb</groupId>
53       <artifactId>library</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.ovsdb</groupId>
57       <artifactId>plugin</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.openflowplugin</groupId>
61       <artifactId>openflowplugin-extension-nicira</artifactId>
62       <version>${openflowplugin.version}</version>
63     </dependency>
64     <dependency>
65       <groupId>junit</groupId>
66       <artifactId>junit</artifactId>
67       <scope>test</scope>
68     </dependency>
69   </dependencies>
70   <build>
71     <plugins>
72       <plugin>
73         <groupId>org.apache.maven.plugins</groupId>
74         <artifactId>maven-checkstyle-plugin</artifactId>
75       </plugin>
76       <plugin>
77         <groupId>org.jacoco</groupId>
78         <artifactId>jacoco-maven-plugin</artifactId>
79       </plugin>
80     </plugins>
81   </build>
82 </project>