blob: e2e0bd3b4f8495032768587bc0014d0f571cf648 [file] [log] [blame]
tom5f38b3a2014-08-27 23:50:54 -07001<?xml version="1.0" encoding="UTF-8"?>
Thomas Vachuska24c849c2014-10-27 09:53:05 -07002<!--
3 ~ Licensed to the Apache Software Foundation (ASF) under one
4 ~ or more contributor license agreements. See the NOTICE file
5 ~ distributed with this work for additional information
6 ~ regarding copyright ownership. The ASF licenses this file
7 ~ to you under the Apache License, Version 2.0 (the
8 ~ "License"); you may not use this file except in compliance
9 ~ with the License. You may obtain a copy of the License at
10 ~
11 ~ http://www.apache.org/licenses/LICENSE-2.0
12 ~
13 ~ Unless required by applicable law or agreed to in writing,
14 ~ software distributed under the License is distributed on an
15 ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 ~ KIND, either express or implied. See the License for the
17 ~ specific language governing permissions and limitations
18 ~ under the License.
19 -->
tom5f38b3a2014-08-27 23:50:54 -070020<project xmlns="http://maven.apache.org/POM/4.0.0"
21 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
23 <modelVersion>4.0.0</modelVersion>
24
25 <parent>
26 <groupId>org.onlab.onos</groupId>
27 <artifactId>onlab-utils</artifactId>
28 <version>1.0.0-SNAPSHOT</version>
29 <relativePath>../pom.xml</relativePath>
30 </parent>
31
32 <artifactId>onlab-misc</artifactId>
33 <packaging>bundle</packaging>
34
35 <description>Miscellaneous ON.Lab utilities</description>
36
37 <dependencies>
tome3489412014-08-29 02:30:38 -070038 <dependency>
39 <groupId>com.google.guava</groupId>
40 <artifactId>guava-testlib</artifactId>
toma7083182014-09-25 21:38:03 -070041 </dependency>
42 <dependency>
43 <groupId>org.onlab.onos</groupId>
44 <artifactId>onlab-junit</artifactId>
Pavlin Radoslavovd26f57a2014-10-23 17:19:45 -070045 <scope>test</scope>
tome3489412014-08-29 02:30:38 -070046 </dependency>
alshabib289652c2014-09-07 19:09:28 -070047 <dependency>
48 <groupId>io.netty</groupId>
49 <artifactId>netty</artifactId>
alshabibdf652ad2014-09-09 11:53:19 -070050 </dependency>
51 <dependency>
52 <groupId>commons-lang</groupId>
53 <artifactId>commons-lang</artifactId>
alshabib289652c2014-09-07 19:09:28 -070054 </dependency>
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -070055 <dependency>
tom66a7eb22014-09-22 11:58:56 -070056 <groupId>org.apache.commons</groupId>
57 <artifactId>commons-lang3</artifactId>
58 </dependency>
59
tomdc66b382014-09-22 17:05:47 -070060 <!-- TODO: do we still need this here? -->
61 <dependency>
62 <groupId>com.eclipsesource.minimal-json</groupId>
63 <artifactId>minimal-json</artifactId>
64 </dependency>
tom66a7eb22014-09-22 11:58:56 -070065 <dependency>
Yuta HIGUCHI8ee7d4c2014-10-09 23:09:41 -070066 <groupId>com.esotericsoftware</groupId>
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -070067 <artifactId>kryo</artifactId>
68 </dependency>
69 <dependency>
pankaj208221d2014-10-02 15:17:52 -070070 <groupId>io.dropwizard.metrics</groupId>
pankaj390abbc2014-10-01 17:01:05 -070071 <artifactId>metrics-core</artifactId>
pankaj208221d2014-10-02 15:17:52 -070072 <version>3.1.0</version>
pankaj390abbc2014-10-01 17:01:05 -070073 </dependency>
pankajf6577b62014-10-02 16:38:38 -070074 <dependency>
Pavlin Radoslavov64d9e472014-10-21 22:01:08 -070075 <groupId>io.dropwizard.metrics</groupId>
76 <artifactId>metrics-json</artifactId>
77 <version>3.1.0</version>
78 </dependency>
79 <dependency>
pankajf6577b62014-10-02 16:38:38 -070080 <groupId>org.apache.felix</groupId>
81 <artifactId>org.apache.felix.scr.annotations</artifactId>
82 </dependency>
tom5f38b3a2014-08-27 23:50:54 -070083 </dependencies>
84
85</project>