blob: 56dc8480b70d2259432921f2c13f746814d1dc3c [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>
Brian O'Connorabafb502014-12-02 22:26:20 -080023 <groupId>org.onosproject</groupId>
tom0eb04ca2014-08-25 14:34:51 -070024 <artifactId>onos</artifactId>
Brian O'Connor6ea48a22015-03-17 20:07:20 -070025 <version>1.2.0-SNAPSHOT</version>
tom0eb04ca2014-08-25 14:34:51 -070026 <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>
Thomas Vachuska02aeb032015-01-06 22:36:30 -080036 <module>common</module>
tomab0af292014-09-19 13:04:54 -070037 <module>net</module>
38 <module>store</module>
Changhoon Yoon23dee8f2015-05-18 22:19:49 +090039 <module>security</module>
tom0eb04ca2014-08-25 14:34:51 -070040 </modules>
41
42 <dependencies>
43 <dependency>
44 <groupId>com.google.guava</groupId>
45 <artifactId>guava</artifactId>
46 </dependency>
tom5f38b3a2014-08-27 23:50:54 -070047 <dependency>
Brian O'Connorabafb502014-12-02 22:26:20 -080048 <groupId>org.onosproject</groupId>
tom5f38b3a2014-08-27 23:50:54 -070049 <artifactId>onlab-misc</artifactId>
50 </dependency>
tom931af4e2014-09-13 12:00:57 -070051 <dependency>
Brian O'Connorabafb502014-12-02 22:26:20 -080052 <groupId>org.onosproject</groupId>
tom931af4e2014-09-13 12:00:57 -070053 <artifactId>onlab-junit</artifactId>
Pavlin Radoslavovd26f57a2014-10-23 17:19:45 -070054 <scope>test</scope>
tom931af4e2014-09-13 12:00:57 -070055 </dependency>
Brian O'Connorc4f351d2015-03-10 20:53:11 -070056 <dependency>
57 <groupId>org.osgi</groupId>
58 <artifactId>org.osgi.compendium</artifactId>
59 </dependency>
tom0eb04ca2014-08-25 14:34:51 -070060 </dependencies>
61
62 <build>
63 <plugins>
64 <plugin>
65 <groupId>org.apache.felix</groupId>
66 <artifactId>maven-bundle-plugin</artifactId>
67 </plugin>
Thomas Vachuska8c8b0372015-03-10 11:11:24 -070068
69 <plugin>
70 <groupId>org.onosproject</groupId>
71 <artifactId>onos-maven-plugin</artifactId>
72 </plugin>
tom0eb04ca2014-08-25 14:34:51 -070073 </plugins>
74 </build>
75
76</project>