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 | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 3 | ~ Copyright 2014-present Open Networking Laboratory |
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> |
Brian O'Connor | e642f7c | 2016-05-23 18:33:04 -0700 | [diff] [blame] | 25 | <version>1.7.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 | |
| 31 | <description>Miscellaneous ON.Lab utilities</description> |
| 32 | |
Jian Li | 7261c7b | 2016-03-05 00:04:55 -0800 | [diff] [blame] | 33 | <properties> |
| 34 | <metrics.version>3.1.2</metrics.version> |
| 35 | </properties> |
| 36 | |
tom | 5f38b3a | 2014-08-27 23:50:54 -0700 | [diff] [blame] | 37 | <dependencies> |
tom | e348941 | 2014-08-29 02:30:38 -0700 | [diff] [blame] | 38 | <dependency> |
| 39 | <groupId>com.google.guava</groupId> |
| 40 | <artifactId>guava-testlib</artifactId> |
tom | a708318 | 2014-09-25 21:38:03 -0700 | [diff] [blame] | 41 | </dependency> |
| 42 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 43 | <groupId>org.onosproject</groupId> |
tom | a708318 | 2014-09-25 21:38:03 -0700 | [diff] [blame] | 44 | <artifactId>onlab-junit</artifactId> |
Pavlin Radoslavov | d26f57a | 2014-10-23 17:19:45 -0700 | [diff] [blame] | 45 | <scope>test</scope> |
tom | e348941 | 2014-08-29 02:30:38 -0700 | [diff] [blame] | 46 | </dependency> |
alshabib | 289652c | 2014-09-07 19:09:28 -0700 | [diff] [blame] | 47 | <dependency> |
Jonathan Hart | 2a65575 | 2015-04-07 16:46:33 -0700 | [diff] [blame] | 48 | <groupId>org.easymock</groupId> |
| 49 | <artifactId>easymock</artifactId> |
| 50 | <scope>test</scope> |
| 51 | </dependency> |
| 52 | <dependency> |
alshabib | 289652c | 2014-09-07 19:09:28 -0700 | [diff] [blame] | 53 | <groupId>io.netty</groupId> |
| 54 | <artifactId>netty</artifactId> |
alshabib | df652ad | 2014-09-09 11:53:19 -0700 | [diff] [blame] | 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>commons-lang</groupId> |
| 58 | <artifactId>commons-lang</artifactId> |
alshabib | 289652c | 2014-09-07 19:09:28 -0700 | [diff] [blame] | 59 | </dependency> |
Yuta HIGUCHI | 24a086b | 2014-09-21 23:28:41 -0700 | [diff] [blame] | 60 | <dependency> |
tom | 66a7eb2 | 2014-09-22 11:58:56 -0700 | [diff] [blame] | 61 | <groupId>org.apache.commons</groupId> |
| 62 | <artifactId>commons-lang3</artifactId> |
| 63 | </dependency> |
| 64 | |
tom | dc66b38 | 2014-09-22 17:05:47 -0700 | [diff] [blame] | 65 | <!-- TODO: do we still need this here? --> |
| 66 | <dependency> |
| 67 | <groupId>com.eclipsesource.minimal-json</groupId> |
| 68 | <artifactId>minimal-json</artifactId> |
| 69 | </dependency> |
tom | 66a7eb2 | 2014-09-22 11:58:56 -0700 | [diff] [blame] | 70 | <dependency> |
Yuta HIGUCHI | 8ee7d4c | 2014-10-09 23:09:41 -0700 | [diff] [blame] | 71 | <groupId>com.esotericsoftware</groupId> |
Yuta HIGUCHI | 24a086b | 2014-09-21 23:28:41 -0700 | [diff] [blame] | 72 | <artifactId>kryo</artifactId> |
| 73 | </dependency> |
| 74 | <dependency> |
pankaj | 208221d | 2014-10-02 15:17:52 -0700 | [diff] [blame] | 75 | <groupId>io.dropwizard.metrics</groupId> |
pankaj | 390abbc | 2014-10-01 17:01:05 -0700 | [diff] [blame] | 76 | <artifactId>metrics-core</artifactId> |
Jian Li | 7261c7b | 2016-03-05 00:04:55 -0800 | [diff] [blame] | 77 | <version>${metrics.version}</version> |
pankaj | 390abbc | 2014-10-01 17:01:05 -0700 | [diff] [blame] | 78 | </dependency> |
pankaj | f6577b6 | 2014-10-02 16:38:38 -0700 | [diff] [blame] | 79 | <dependency> |
Pavlin Radoslavov | 64d9e47 | 2014-10-21 22:01:08 -0700 | [diff] [blame] | 80 | <groupId>io.dropwizard.metrics</groupId> |
| 81 | <artifactId>metrics-json</artifactId> |
Jian Li | 7261c7b | 2016-03-05 00:04:55 -0800 | [diff] [blame] | 82 | <version>${metrics.version}</version> |
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> |