Integration test, SimpleClient bundle
[openflowjava.git] / openflow-protocol-it / 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.openflowjava</groupId>
6         <artifactId>openflow-protocol-parent</artifactId>
7         <version>0.1-SNAPSHOT</version>
8     </parent>
9     <artifactId>openflow-protocol-it</artifactId>
10     <packaging>bundle</packaging>
11     <name>Openflow Protocol Integration Test</name>
12     
13     <dependencies>
14         <dependency>
15             <groupId>${project.groupId}</groupId>
16             <artifactId>openflow-protocol-impl</artifactId>
17             <version>${project.version}</version>
18             <scope>test</scope>
19         </dependency>
20         <dependency>
21             <groupId>${project.groupId}</groupId>
22             <artifactId>simple-client</artifactId>
23             <version>${project.version}</version>
24             <scope>test</scope>
25         </dependency>
26         <dependency>
27             <groupId>junit</groupId>
28             <artifactId>junit</artifactId>
29             <scope>test</scope>
30         </dependency>
31         <dependency>
32             <groupId>org.slf4j</groupId>
33             <artifactId>slf4j-log4j12</artifactId>
34             <version>${slf4j.version}</version>
35         </dependency>
36     </dependencies>
37 </project>