blob: fc8216ff89e0f1a0fa0bc3117e7f1edf82ccb863 [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>
Pavlin Radoslavovd26f57a2014-10-23 17:19:45 -070038 <scope>test</scope>
tom931af4e2014-09-13 12:00:57 -070039 </dependency>
tom0eb04ca2014-08-25 14:34:51 -070040 </dependencies>
41
42 <build>
43 <plugins>
44 <plugin>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>maven-bundle-plugin</artifactId>
47 </plugin>
48 </plugins>
49 </build>
50
51</project>