blob: 2beeba8de4ffd6f93304d71cb1498f78952bb6c3 [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>
tom6a62aa22014-09-25 09:10:12 -070022 <module>nio</module>
tom0eb04ca2014-08-25 14:34:51 -070023 <module>osgi</module>
24 <module>rest</module>
25 </modules>
26
27 <dependencies>
28 <dependency>
29 <groupId>com.google.guava</groupId>
30 <artifactId>guava</artifactId>
31 </dependency>
32 </dependencies>
33
tom0eb04ca2014-08-25 14:34:51 -070034 <build>
35 <plugins>
36 <plugin>
37 <groupId>org.apache.felix</groupId>
38 <artifactId>maven-bundle-plugin</artifactId>
39 </plugin>
40 </plugins>
41 </build>
42
43</project>