blob: df7b97bd84fc965fa438c16ee4db1e25906661df [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>
Jonathan Hart403ffcd2014-10-16 08:54:35 -070026 <module>thirdparty</module>
tom0eb04ca2014-08-25 14:34:51 -070027 </modules>
28
29 <dependencies>
30 <dependency>
31 <groupId>com.google.guava</groupId>
32 <artifactId>guava</artifactId>
33 </dependency>
34 </dependencies>
35
tom0eb04ca2014-08-25 14:34:51 -070036 <build>
37 <plugins>
38 <plugin>
39 <groupId>org.apache.felix</groupId>
40 <artifactId>maven-bundle-plugin</artifactId>
41 </plugin>
42 </plugins>
43 </build>
44
45</project>