tom | 5f38b3a | 2014-08-27 23:50:54 -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-misc</artifactId> |
| 15 | <packaging>bundle</packaging> |
| 16 | |
| 17 | <description>Miscellaneous ON.Lab utilities</description> |
| 18 | |
| 19 | <dependencies> |
tom | e348941 | 2014-08-29 02:30:38 -0700 | [diff] [blame] | 20 | <dependency> |
| 21 | <groupId>com.google.guava</groupId> |
| 22 | <artifactId>guava-testlib</artifactId> |
tom | e348941 | 2014-08-29 02:30:38 -0700 | [diff] [blame] | 23 | <scope>test</scope> |
| 24 | </dependency> |
alshabib | 289652c | 2014-09-07 19:09:28 -0700 | [diff] [blame] | 25 | <dependency> |
| 26 | <groupId>io.netty</groupId> |
| 27 | <artifactId>netty</artifactId> |
alshabib | df652ad | 2014-09-09 11:53:19 -0700 | [diff] [blame] | 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>commons-lang</groupId> |
| 31 | <artifactId>commons-lang</artifactId> |
alshabib | 289652c | 2014-09-07 19:09:28 -0700 | [diff] [blame] | 32 | </dependency> |
Yuta HIGUCHI | 24a086b | 2014-09-21 23:28:41 -0700 | [diff] [blame] | 33 | <dependency> |
tom | 66a7eb2 | 2014-09-22 11:58:56 -0700 | [diff] [blame] | 34 | <groupId>org.apache.commons</groupId> |
| 35 | <artifactId>commons-lang3</artifactId> |
| 36 | </dependency> |
| 37 | |
tom | dc66b38 | 2014-09-22 17:05:47 -0700 | [diff] [blame] | 38 | <!-- TODO: do we still need this here? --> |
| 39 | <dependency> |
| 40 | <groupId>com.eclipsesource.minimal-json</groupId> |
| 41 | <artifactId>minimal-json</artifactId> |
| 42 | </dependency> |
tom | 66a7eb2 | 2014-09-22 11:58:56 -0700 | [diff] [blame] | 43 | <dependency> |
Yuta HIGUCHI | 24a086b | 2014-09-21 23:28:41 -0700 | [diff] [blame] | 44 | <groupId>com.esotericsoftware.kryo</groupId> |
| 45 | <artifactId>kryo</artifactId> |
| 46 | </dependency> |
| 47 | <dependency> |
tom | 66a7eb2 | 2014-09-22 11:58:56 -0700 | [diff] [blame] | 48 | <groupId>com.esotericsoftware</groupId> |
| 49 | <artifactId>minlog</artifactId> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.objenesis</groupId> |
| 53 | <artifactId>objenesis</artifactId> |
Yuta HIGUCHI | 24a086b | 2014-09-21 23:28:41 -0700 | [diff] [blame] | 54 | </dependency> |
tom | 5f38b3a | 2014-08-27 23:50:54 -0700 | [diff] [blame] | 55 | </dependencies> |
| 56 | |
| 57 | </project> |