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