tom | 5f38b3a | 2014-08-27 23:50:54 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Thomas Vachuska | 24c849c | 2014-10-27 09:53:05 -0700 | [diff] [blame] | 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2014-present Open Networking Foundation |
Thomas Vachuska | 24c849c | 2014-10-27 09:53:05 -0700 | [diff] [blame] | 4 | ~ |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 5 | ~ 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 Vachuska | 24c849c | 2014-10-27 09:53:05 -0700 | [diff] [blame] | 8 | ~ |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 9 | ~ 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 Vachuska | 24c849c | 2014-10-27 09:53:05 -0700 | [diff] [blame] | 16 | --> |
tom | 5f38b3a | 2014-08-27 23:50:54 -0700 | [diff] [blame] | 17 | <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'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 23 | <groupId>org.onosproject</groupId> |
tom | 5f38b3a | 2014-08-27 23:50:54 -0700 | [diff] [blame] | 24 | <artifactId>onlab-utils</artifactId> |
Ray Milkey | bca9049 | 2018-04-13 12:47:31 -0700 | [diff] [blame] | 25 | <version>1.14.0-SNAPSHOT</version> |
tom | 5f38b3a | 2014-08-27 23:50:54 -0700 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <artifactId>onlab-misc</artifactId> |
| 29 | <packaging>bundle</packaging> |
| 30 | |
Thomas Vachuska | a10137c | 2018-04-03 16:45:59 -0700 | [diff] [blame] | 31 | <description>Miscellaneous Open Networking Foundation utilities</description> |
tom | 5f38b3a | 2014-08-27 23:50:54 -0700 | [diff] [blame] | 32 | |
Jian Li | 7261c7b | 2016-03-05 00:04:55 -0800 | [diff] [blame] | 33 | <properties> |
Jian Li | 7261c7b | 2016-03-05 00:04:55 -0800 | [diff] [blame] | 34 | </properties> |
| 35 | |
tom | 5f38b3a | 2014-08-27 23:50:54 -0700 | [diff] [blame] | 36 | <dependencies> |
tom | e348941 | 2014-08-29 02:30:38 -0700 | [diff] [blame] | 37 | <dependency> |
| 38 | <groupId>com.google.guava</groupId> |
| 39 | <artifactId>guava-testlib</artifactId> |
tom | a708318 | 2014-09-25 21:38:03 -0700 | [diff] [blame] | 40 | </dependency> |
| 41 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 42 | <groupId>org.onosproject</groupId> |
tom | a708318 | 2014-09-25 21:38:03 -0700 | [diff] [blame] | 43 | <artifactId>onlab-junit</artifactId> |
Pavlin Radoslavov | d26f57a | 2014-10-23 17:19:45 -0700 | [diff] [blame] | 44 | <scope>test</scope> |
tom | e348941 | 2014-08-29 02:30:38 -0700 | [diff] [blame] | 45 | </dependency> |
alshabib | 289652c | 2014-09-07 19:09:28 -0700 | [diff] [blame] | 46 | <dependency> |
Jonathan Hart | 2a65575 | 2015-04-07 16:46:33 -0700 | [diff] [blame] | 47 | <groupId>org.easymock</groupId> |
| 48 | <artifactId>easymock</artifactId> |
| 49 | <scope>test</scope> |
| 50 | </dependency> |
Yuta HIGUCHI | 6ee6b8c | 2017-05-09 14:44:30 -0700 | [diff] [blame] | 51 | |
| 52 | <!-- for HashedWheelTimer --> |
Jonathan Hart | 2a65575 | 2015-04-07 16:46:33 -0700 | [diff] [blame] | 53 | <dependency> |
alshabib | 289652c | 2014-09-07 19:09:28 -0700 | [diff] [blame] | 54 | <groupId>io.netty</groupId> |
| 55 | <artifactId>netty</artifactId> |
alshabib | df652ad | 2014-09-09 11:53:19 -0700 | [diff] [blame] | 56 | </dependency> |
Yuta HIGUCHI | 6ee6b8c | 2017-05-09 14:44:30 -0700 | [diff] [blame] | 57 | |
alshabib | df652ad | 2014-09-09 11:53:19 -0700 | [diff] [blame] | 58 | <dependency> |
Yuta HIGUCHI | 19afc03 | 2017-05-20 23:44:17 -0700 | [diff] [blame] | 59 | <groupId>io.netty</groupId> |
| 60 | <artifactId>netty-common</artifactId> |
| 61 | </dependency> |
| 62 | |
| 63 | <dependency> |
alshabib | df652ad | 2014-09-09 11:53:19 -0700 | [diff] [blame] | 64 | <groupId>commons-lang</groupId> |
| 65 | <artifactId>commons-lang</artifactId> |
alshabib | 289652c | 2014-09-07 19:09:28 -0700 | [diff] [blame] | 66 | </dependency> |
Yuta HIGUCHI | 24a086b | 2014-09-21 23:28:41 -0700 | [diff] [blame] | 67 | <dependency> |
tom | 66a7eb2 | 2014-09-22 11:58:56 -0700 | [diff] [blame] | 68 | <groupId>org.apache.commons</groupId> |
| 69 | <artifactId>commons-lang3</artifactId> |
| 70 | </dependency> |
| 71 | |
| 72 | <dependency> |
Yuta HIGUCHI | 8ee7d4c | 2014-10-09 23:09:41 -0700 | [diff] [blame] | 73 | <groupId>com.esotericsoftware</groupId> |
Yuta HIGUCHI | 24a086b | 2014-09-21 23:28:41 -0700 | [diff] [blame] | 74 | <artifactId>kryo</artifactId> |
| 75 | </dependency> |
| 76 | <dependency> |
pankaj | 208221d | 2014-10-02 15:17:52 -0700 | [diff] [blame] | 77 | <groupId>io.dropwizard.metrics</groupId> |
pankaj | 390abbc | 2014-10-01 17:01:05 -0700 | [diff] [blame] | 78 | <artifactId>metrics-core</artifactId> |
pankaj | 390abbc | 2014-10-01 17:01:05 -0700 | [diff] [blame] | 79 | </dependency> |
pankaj | f6577b6 | 2014-10-02 16:38:38 -0700 | [diff] [blame] | 80 | <dependency> |
Pavlin Radoslavov | 64d9e47 | 2014-10-21 22:01:08 -0700 | [diff] [blame] | 81 | <groupId>io.dropwizard.metrics</groupId> |
| 82 | <artifactId>metrics-json</artifactId> |
Pavlin Radoslavov | 64d9e47 | 2014-10-21 22:01:08 -0700 | [diff] [blame] | 83 | </dependency> |
| 84 | <dependency> |
pankaj | f6577b6 | 2014-10-02 16:38:38 -0700 | [diff] [blame] | 85 | <groupId>org.apache.felix</groupId> |
| 86 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 87 | </dependency> |
tom | 5f38b3a | 2014-08-27 23:50:54 -0700 | [diff] [blame] | 88 | </dependencies> |
| 89 | |
| 90 | </project> |