blob: 322bac8a19250e50664cab9455dbf9ed92a21d61 [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001<?xml version="1.0" encoding="UTF-8"?>
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07002<!--
3 ~ Copyright 2014 Open Networking Laboratory
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
tom0eb04ca2014-08-25 14:34:51 -070017<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onlab.onos</groupId>
24 <artifactId>onos</artifactId>
25 <version>1.0.0-SNAPSHOT</version>
26 <relativePath>../pom.xml</relativePath>
27 </parent>
28
tome2dc27a2014-09-09 12:41:21 -070029 <artifactId>onos-core</artifactId>
tom0eb04ca2014-08-25 14:34:51 -070030 <packaging>pom</packaging>
31
32 <description>ONOS Core root project</description>
33
34 <modules>
35 <module>api</module>
tomab0af292014-09-19 13:04:54 -070036 <module>net</module>
37 <module>store</module>
Thomas Vachuska0a608ac2014-10-16 11:15:59 -070038 <module>json</module>
tom0eb04ca2014-08-25 14:34:51 -070039 </modules>
40
41 <dependencies>
42 <dependency>
43 <groupId>com.google.guava</groupId>
44 <artifactId>guava</artifactId>
45 </dependency>
tom5f38b3a2014-08-27 23:50:54 -070046 <dependency>
47 <groupId>org.onlab.onos</groupId>
48 <artifactId>onlab-misc</artifactId>
49 </dependency>
tom931af4e2014-09-13 12:00:57 -070050 <dependency>
51 <groupId>org.onlab.onos</groupId>
52 <artifactId>onlab-junit</artifactId>
Pavlin Radoslavovd26f57a2014-10-23 17:19:45 -070053 <scope>test</scope>
tom931af4e2014-09-13 12:00:57 -070054 </dependency>
tom0eb04ca2014-08-25 14:34:51 -070055 </dependencies>
56
57 <build>
58 <plugins>
59 <plugin>
60 <groupId>org.apache.felix</groupId>
61 <artifactId>maven-bundle-plugin</artifactId>
62 </plugin>
63 </plugins>
64 </build>
65
66</project>