blob: c0f74cf49c89e6a8dc1c02ed5d92f04788ba5902 [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
tome2dc27a2014-09-09 12:41:21 -070014 <artifactId>onos-core</artifactId>
tom0eb04ca2014-08-25 14:34:51 -070015 <packaging>pom</packaging>
16
17 <description>ONOS Core root project</description>
18
19 <modules>
20 <module>api</module>
tomab0af292014-09-19 13:04:54 -070021 <module>net</module>
22 <module>store</module>
Thomas Vachuska0a608ac2014-10-16 11:15:59 -070023 <module>json</module>
tom0eb04ca2014-08-25 14:34:51 -070024 </modules>
25
26 <dependencies>
27 <dependency>
28 <groupId>com.google.guava</groupId>
29 <artifactId>guava</artifactId>
30 </dependency>
tom5f38b3a2014-08-27 23:50:54 -070031 <dependency>
32 <groupId>org.onlab.onos</groupId>
33 <artifactId>onlab-misc</artifactId>
34 </dependency>
tom931af4e2014-09-13 12:00:57 -070035 <dependency>
36 <groupId>org.onlab.onos</groupId>
37 <artifactId>onlab-junit</artifactId>
38 </dependency>
tom0eb04ca2014-08-25 14:34:51 -070039 </dependencies>
40
41 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.apache.felix</groupId>
45 <artifactId>maven-bundle-plugin</artifactId>
46 </plugin>
47 </plugins>
48 </build>
49
50</project>