tom | 6a62aa2 | 2014-09-25 09:10:12 -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-nio</artifactId> |
| 15 | <packaging>bundle</packaging> |
| 16 | |
| 17 | <description>Fast network I/O using Java NIO</description> |
| 18 | |
| 19 | <dependencies> |
| 20 | <dependency> |
| 21 | <groupId>com.google.guava</groupId> |
| 22 | <artifactId>guava-testlib</artifactId> |
| 23 | <scope>test</scope> |
| 24 | </dependency> |
tom | a708318 | 2014-09-25 21:38:03 -0700 | [diff] [blame] | 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> |
tom | 6a62aa2 | 2014-09-25 09:10:12 -0700 | [diff] [blame] | 34 | </dependencies> |
| 35 | |
| 36 | </project> |