Removed some unused files and dependencies.
[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.2.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.0.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.4-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.ovsdb</groupId>
48       <artifactId>library</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.ovsdb</groupId>
52       <artifactId>plugin</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.openflowplugin</groupId>
56       <artifactId>openflowplugin-extension-nicira</artifactId>
57       <version>${openflowplugin-nicira.version}</version>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.ovsdb</groupId>
61       <artifactId>of-extension.nx-sal</artifactId>
62       <version>1.0.0-SNAPSHOT</version>
63     </dependency>
64
65     <dependency>
66       <groupId>junit</groupId>
67       <artifactId>junit</artifactId>
68       <scope>test</scope>
69     </dependency>
70   </dependencies>
71 </project>