first draft implementation of openflowjava-core
[openflowjava.git] / openflow-protocol-impl / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4     <parent>
5         <groupId>org.opendaylight.openflow</groupId>
6         <artifactId>openflow-protocol-parent</artifactId>
7         <version>0.1-SNAPSHOT</version>
8     </parent>
9     <artifactId>openflow-protocol-impl</artifactId>
10     <packaging>jar</packaging>
11     
12     <dependencies>
13         <dependency>
14             <groupId>org.opendaylight.openflow</groupId>
15             <artifactId>openflow-protocol-api</artifactId>
16             <version>${project.version}</version>
17         </dependency>
18         <dependency>
19             <groupId>org.opendaylight.openflow</groupId>
20             <artifactId>openflow-protocol-spi</artifactId>
21             <version>${project.version}</version>
22         </dependency>
23         <dependency>
24             <groupId>io.netty</groupId>
25             <artifactId>netty-all</artifactId>
26             <version>4.0.4.Final</version>
27         </dependency>
28         <dependency>
29             <groupId>org.slf4j</groupId>
30             <artifactId>slf4j-log4j12</artifactId>
31             <version>1.7.5</version>
32         </dependency>
33         <dependency>
34             <groupId>com.google.guava</groupId>
35             <artifactId>guava</artifactId>
36             <version>14.0.1</version>
37         </dependency>
38         <dependency>
39             <groupId>junit</groupId>
40             <artifactId>junit</artifactId>
41             <version>4.10</version>
42             <scope>test</scope>
43         </dependency>
44     </dependencies>
45 </project>