blob: 93503688fb6619645de692c91fb1ecf038352c54 [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<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2014-present Open Networking Foundation
Thomas Vachuska24c849c2014-10-27 09:53:05 -07004 ~
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07005 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
Thomas Vachuska24c849c2014-10-27 09:53:05 -07008 ~
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07009 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
Thomas Vachuska24c849c2014-10-27 09:53:05 -070016 -->
tom5f38b3a2014-08-27 23:50:54 -070017<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
Brian O'Connorabafb502014-12-02 22:26:20 -080023 <groupId>org.onosproject</groupId>
tom5f38b3a2014-08-27 23:50:54 -070024 <artifactId>onlab-utils</artifactId>
Ray Milkeyeb3f6ef2017-09-26 14:40:44 -070025 <version>1.12.0-b1</version>
tom5f38b3a2014-08-27 23:50:54 -070026 </parent>
27
28 <artifactId>onlab-misc</artifactId>
29 <packaging>bundle</packaging>
30
31 <description>Miscellaneous ON.Lab utilities</description>
32
Jian Li7261c7b2016-03-05 00:04:55 -080033 <properties>
34 <metrics.version>3.1.2</metrics.version>
35 </properties>
36
tom5f38b3a2014-08-27 23:50:54 -070037 <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>
Brian O'Connorabafb502014-12-02 22:26:20 -080043 <groupId>org.onosproject</groupId>
toma7083182014-09-25 21:38:03 -070044 <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>
Jonathan Hart2a655752015-04-07 16:46:33 -070048 <groupId>org.easymock</groupId>
49 <artifactId>easymock</artifactId>
50 <scope>test</scope>
51 </dependency>
Yuta HIGUCHI6ee6b8c2017-05-09 14:44:30 -070052
53 <!-- for HashedWheelTimer -->
Jonathan Hart2a655752015-04-07 16:46:33 -070054 <dependency>
alshabib289652c2014-09-07 19:09:28 -070055 <groupId>io.netty</groupId>
56 <artifactId>netty</artifactId>
alshabibdf652ad2014-09-09 11:53:19 -070057 </dependency>
Yuta HIGUCHI6ee6b8c2017-05-09 14:44:30 -070058
alshabibdf652ad2014-09-09 11:53:19 -070059 <dependency>
Yuta HIGUCHI19afc032017-05-20 23:44:17 -070060 <groupId>io.netty</groupId>
61 <artifactId>netty-common</artifactId>
62 </dependency>
63
64 <dependency>
alshabibdf652ad2014-09-09 11:53:19 -070065 <groupId>commons-lang</groupId>
66 <artifactId>commons-lang</artifactId>
alshabib289652c2014-09-07 19:09:28 -070067 </dependency>
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -070068 <dependency>
tom66a7eb22014-09-22 11:58:56 -070069 <groupId>org.apache.commons</groupId>
70 <artifactId>commons-lang3</artifactId>
71 </dependency>
72
73 <dependency>
Yuta HIGUCHI8ee7d4c2014-10-09 23:09:41 -070074 <groupId>com.esotericsoftware</groupId>
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -070075 <artifactId>kryo</artifactId>
76 </dependency>
77 <dependency>
pankaj208221d2014-10-02 15:17:52 -070078 <groupId>io.dropwizard.metrics</groupId>
pankaj390abbc2014-10-01 17:01:05 -070079 <artifactId>metrics-core</artifactId>
Jian Li7261c7b2016-03-05 00:04:55 -080080 <version>${metrics.version}</version>
pankaj390abbc2014-10-01 17:01:05 -070081 </dependency>
pankajf6577b62014-10-02 16:38:38 -070082 <dependency>
Pavlin Radoslavov64d9e472014-10-21 22:01:08 -070083 <groupId>io.dropwizard.metrics</groupId>
84 <artifactId>metrics-json</artifactId>
Jian Li7261c7b2016-03-05 00:04:55 -080085 <version>${metrics.version}</version>
Pavlin Radoslavov64d9e472014-10-21 22:01:08 -070086 </dependency>
87 <dependency>
pankajf6577b62014-10-02 16:38:38 -070088 <groupId>org.apache.felix</groupId>
89 <artifactId>org.apache.felix.scr.annotations</artifactId>
90 </dependency>
tom5f38b3a2014-08-27 23:50:54 -070091 </dependencies>
92
93</project>