blob: c956abed80d173dc4b39448538a7d6730ac62a20 [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>
tom94bb4a42014-08-27 22:12:02 -070020 <module>misc</module>
tom0eb04ca2014-08-25 14:34:51 -070021 <module>osgi</module>
22 <module>rest</module>
23 </modules>
24
25 <dependencies>
26 <dependency>
27 <groupId>com.google.guava</groupId>
28 <artifactId>guava</artifactId>
29 </dependency>
30 </dependencies>
31
tom0eb04ca2014-08-25 14:34:51 -070032 <build>
33 <plugins>
34 <plugin>
35 <groupId>org.apache.felix</groupId>
36 <artifactId>maven-bundle-plugin</artifactId>
37 </plugin>
38 </plugins>
39 </build>
40
41</project>