Fixed ByteBuf logging
[openflowjava.git] / simple-client / 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>simple-client</artifactId>
10     <packaging>bundle</packaging>
11     <name>Openflow Protocol Simple Client</name>
12     
13     <build>
14         <plugins>
15             <plugin>
16                 <groupId>org.apache.felix</groupId>
17                 <artifactId>maven-bundle-plugin</artifactId>
18                 <configuration>
19                     <instructions>
20                         <Export-Package>org.opendaylight.openflowjava.protocol.impl.clients.*</Export-Package>
21                     </instructions>
22                 </configuration>
23             </plugin>
24         </plugins>
25     </build>
26     
27     <dependencies>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>openflow-protocol-impl</artifactId>
31             <version>${project.version}</version>
32         </dependency>
33         <dependency>
34             <groupId>io.netty</groupId>
35             <artifactId>netty-handler</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>com.google.guava</groupId>
39             <artifactId>guava</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.slf4j</groupId>
43             <artifactId>slf4j-log4j12</artifactId>
44             <version>${slf4j.version}</version>
45         </dependency>
46     </dependencies>
47 </project>