Madan Jampani | c9ed9be | 2014-10-02 16:13:11 -0700 | [diff] [blame] | 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/maven-v4_0_0.xsd"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | |
| 7 | <parent> |
| 8 | <groupId>org.onlab.onos</groupId> |
| 9 | <artifactId>onlab-utils</artifactId> |
| 10 | <version>1.0.0-SNAPSHOT</version> |
| 11 | <relativePath>../pom.xml</relativePath> |
| 12 | </parent> |
| 13 | |
| 14 | <artifactId>onlab-netty</artifactId> |
| 15 | <packaging>bundle</packaging> |
| 16 | |
| 17 | <description>Network I/O using Netty framework</description> |
| 18 | |
| 19 | <dependencies> |
| 20 | <dependency> |
| 21 | <groupId>com.google.guava</groupId> |
| 22 | <artifactId>guava-testlib</artifactId> |
| 23 | <scope>test</scope> |
| 24 | </dependency> |
| 25 | <dependency> |
| 26 | <groupId>org.onlab.onos</groupId> |
| 27 | <artifactId>onlab-misc</artifactId> |
| 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>org.onlab.onos</groupId> |
| 31 | <artifactId>onlab-junit</artifactId> |
| 32 | <scope>test</scope> |
| 33 | </dependency> |
| 34 | <dependency> |
| 35 | <groupId>de.javakaffee</groupId> |
| 36 | <artifactId>kryo-serializers</artifactId> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>io.netty</groupId> |
| 40 | <artifactId>netty-all</artifactId> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>commons-pool</groupId> |
| 44 | <artifactId>commons-pool</artifactId> |
Madan Jampani | c9ed9be | 2014-10-02 16:13:11 -0700 | [diff] [blame] | 45 | </dependency> |
| 46 | </dependencies> |
| 47 | |
| 48 | </project> |