blob: feb60e966803e4ff8733b99ac38b193a1df3c94c [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>
Madan Jampanic9ed9be2014-10-02 16:13:11 -070022 <module>netty</module>
tom6a62aa22014-09-25 09:10:12 -070023 <module>nio</module>
tom0eb04ca2014-08-25 14:34:51 -070024 <module>osgi</module>
25 <module>rest</module>
26 </modules>
27
28 <dependencies>
29 <dependency>
30 <groupId>com.google.guava</groupId>
31 <artifactId>guava</artifactId>
32 </dependency>
33 </dependencies>
34
tom0eb04ca2014-08-25 14:34:51 -070035 <build>
36 <plugins>
37 <plugin>
38 <groupId>org.apache.felix</groupId>
39 <artifactId>maven-bundle-plugin</artifactId>
40 </plugin>
41 </plugins>
42 </build>
43
44</project>