blob: 6ddadac571014f886cd158727591390bc7637067 [file] [log] [blame]
tom931af4e2014-09-13 12:00:57 -07001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6
7 <parent>
8 <groupId>org.onlab.onos</groupId>
9 <artifactId>onlab-utils</artifactId>
10 <version>1.0.0-SNAPSHOT</version>
11 <relativePath>../pom.xml</relativePath>
12 </parent>
13
14 <artifactId>onlab-junit</artifactId>
15 <packaging>bundle</packaging>
16
17 <description>ON.Lab JUnit test utilities</description>
18
19 <dependencies>
20 <dependency>
21 <groupId>junit</groupId>
22 <artifactId>junit</artifactId>
23 <scope>compile</scope>
24 </dependency>
25 <dependency>
26 <groupId>com.google.guava</groupId>
27 <artifactId>guava-testlib</artifactId>
28 <scope>compile</scope>
29 </dependency>
Pavlin Radoslavovd26f57a2014-10-23 17:19:45 -070030 <dependency>
31 <groupId>org.hamcrest</groupId>
32 <artifactId>hamcrest-core</artifactId>
33 <scope>compile</scope>
34 </dependency>
35 <dependency>
36 <groupId>org.hamcrest</groupId>
37 <artifactId>hamcrest-library</artifactId>
38 <scope>compile</scope>
39 </dependency>
tom931af4e2014-09-13 12:00:57 -070040 </dependencies>
41
42</project>