blob: bd4fa6efbecdf90823392da248c8651a6f91ac29 [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
14 <artifactId>onos-net</artifactId>
15 <packaging>pom</packaging>
16
17 <description>ONOS Core root project</description>
18
19 <modules>
20 <module>api</module>
21 <module>core</module>
22 </modules>
23
24 <dependencies>
25 <dependency>
26 <groupId>com.google.guava</groupId>
27 <artifactId>guava</artifactId>
28 </dependency>
29 </dependencies>
30
31 <build>
32 <plugins>
33 <plugin>
34 <groupId>org.apache.felix</groupId>
35 <artifactId>maven-bundle-plugin</artifactId>
36 </plugin>
37 </plugins>
38 </build>
39
40</project>