blob: d9e013c92345161c97dc3744d7fcad56bb9675b4 [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -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>onos</artifactId>
10 <version>1.0.0-SNAPSHOT</version>
11 <relativePath>../pom.xml</relativePath>
12 </parent>
13
tom94bb4a42014-08-27 22:12:02 -070014 <artifactId>onlab-utils</artifactId>
tom0eb04ca2014-08-25 14:34:51 -070015 <packaging>pom</packaging>
16
tom94bb4a42014-08-27 22:12:02 -070017 <description>Domain agnostic ON.Lab utilities</description>
tom0eb04ca2014-08-25 14:34:51 -070018
19 <modules>
tom931af4e2014-09-13 12:00:57 -070020 <module>junit</module>
tom94bb4a42014-08-27 22:12:02 -070021 <module>misc</module>
tom0eb04ca2014-08-25 14:34:51 -070022 <module>osgi</module>
23 <module>rest</module>
24 </modules>
25
26 <dependencies>
27 <dependency>
28 <groupId>com.google.guava</groupId>
29 <artifactId>guava</artifactId>
30 </dependency>
31 </dependencies>
32
tom0eb04ca2014-08-25 14:34:51 -070033 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.apache.felix</groupId>
37 <artifactId>maven-bundle-plugin</artifactId>
38 </plugin>
39 </plugins>
40 </build>
41
42</project>