blob: 5040fb07f7709da73799245e3c1cabc8e4898aeb [file] [log] [blame]
tom5f38b3a2014-08-27 23:50:54 -07001<?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>
tome3489412014-08-29 02:30:38 -070020 <dependency>
21 <groupId>com.google.guava</groupId>
22 <artifactId>guava-testlib</artifactId>
toma7083182014-09-25 21:38:03 -070023 </dependency>
24 <dependency>
25 <groupId>org.onlab.onos</groupId>
26 <artifactId>onlab-junit</artifactId>
tome3489412014-08-29 02:30:38 -070027 </dependency>
alshabib289652c2014-09-07 19:09:28 -070028 <dependency>
29 <groupId>io.netty</groupId>
30 <artifactId>netty</artifactId>
alshabibdf652ad2014-09-09 11:53:19 -070031 </dependency>
32 <dependency>
33 <groupId>commons-lang</groupId>
34 <artifactId>commons-lang</artifactId>
alshabib289652c2014-09-07 19:09:28 -070035 </dependency>
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -070036 <dependency>
tom66a7eb22014-09-22 11:58:56 -070037 <groupId>org.apache.commons</groupId>
38 <artifactId>commons-lang3</artifactId>
39 </dependency>
40
tomdc66b382014-09-22 17:05:47 -070041 <!-- TODO: do we still need this here? -->
42 <dependency>
43 <groupId>com.eclipsesource.minimal-json</groupId>
44 <artifactId>minimal-json</artifactId>
45 </dependency>
tom66a7eb22014-09-22 11:58:56 -070046 <dependency>
Yuta HIGUCHI8ee7d4c2014-10-09 23:09:41 -070047 <groupId>com.esotericsoftware</groupId>
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -070048 <artifactId>kryo</artifactId>
49 </dependency>
50 <dependency>
pankaj208221d2014-10-02 15:17:52 -070051 <groupId>io.dropwizard.metrics</groupId>
pankaj390abbc2014-10-01 17:01:05 -070052 <artifactId>metrics-core</artifactId>
pankaj208221d2014-10-02 15:17:52 -070053 <version>3.1.0</version>
pankaj390abbc2014-10-01 17:01:05 -070054 </dependency>
pankajf6577b62014-10-02 16:38:38 -070055 <dependency>
56 <groupId>org.apache.felix</groupId>
57 <artifactId>org.apache.felix.scr.annotations</artifactId>
58 </dependency>
tom5f38b3a2014-08-27 23:50:54 -070059 </dependencies>
60
61</project>