blob: a34aa02d368a69e055e5fec225f7fea0558a61fc [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>
alshabibc4901cd2014-09-05 16:50:40 -070030 <dependency>
31 <groupId>commons-lang</groupId>
32 <artifactId>commons-lang</artifactId>
33 <version>2.3</version>
34 </dependency>
tom0eb04ca2014-08-25 14:34:51 -070035 </dependencies>
36
tom0eb04ca2014-08-25 14:34:51 -070037 <build>
38 <plugins>
39 <plugin>
40 <groupId>org.apache.felix</groupId>
41 <artifactId>maven-bundle-plugin</artifactId>
42 </plugin>
43 </plugins>
44 </build>
45
46</project>