blob: 2fd2b6456a8162358d7694c3040af87d02ad7e54 [file] [log] [blame]
Thomas Vachuskad3858e42015-04-22 22:05:49 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2015-present Open Networking Laboratory
Thomas Vachuskad3858e42015-04-22 22:05:49 -07004 ~
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 -->
17<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.onosproject</groupId>
24 <artifactId>onos</artifactId>
Brian O'Connor955c3162016-03-10 15:27:19 -080025 <version>1.6.0-SNAPSHOT</version>
Thomas Vachuskad3858e42015-04-22 22:05:49 -070026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
Thomas Vachuskad24aa7f2015-05-14 18:37:54 -070029 <artifactId>onos-incubator</artifactId>
Thomas Vachuskad3858e42015-04-22 22:05:49 -070030 <packaging>pom</packaging>
31
32 <description>ONOS Incubator root project</description>
33
34 <modules>
35 <module>api</module>
Jonathan Hartb4a42152015-12-08 17:06:30 -080036 <module>core</module>
Thomas Vachuskad3858e42015-04-22 22:05:49 -070037 <module>net</module>
38 <module>store</module>
HIGUCHI Yuta279b8d12015-11-04 10:58:06 -080039 <module>rpc</module>
HIGUCHI Yuta15653fd2015-11-09 11:05:09 -080040 <module>rpc-grpc</module>
Thomas Vachuskad3858e42015-04-22 22:05:49 -070041 </modules>
42
43 <dependencies>
44 <dependency>
45 <groupId>org.onosproject</groupId>
46 <artifactId>onos-api</artifactId>
47 </dependency>
Brian O'Connor6de2e202015-05-21 14:30:41 -070048
49 <dependency>
50 <groupId>org.onosproject</groupId>
51 <artifactId>onos-api</artifactId>
52 <classifier>tests</classifier>
53 <scope>test</scope>
54 </dependency>
Thomas Vachuskad3858e42015-04-22 22:05:49 -070055 <dependency>
56 <groupId>com.google.guava</groupId>
57 <artifactId>guava</artifactId>
58 </dependency>
59 <dependency>
60 <groupId>org.onosproject</groupId>
61 <artifactId>onlab-misc</artifactId>
62 </dependency>
63 <dependency>
64 <groupId>org.onosproject</groupId>
65 <artifactId>onlab-junit</artifactId>
66 <scope>test</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.osgi</groupId>
70 <artifactId>org.osgi.compendium</artifactId>
71 </dependency>
72 </dependencies>
73
74 <build>
75 <plugins>
76 <plugin>
77 <groupId>org.apache.felix</groupId>
78 <artifactId>maven-bundle-plugin</artifactId>
79 </plugin>
Thomas Vachuskad3858e42015-04-22 22:05:49 -070080 <plugin>
81 <groupId>org.onosproject</groupId>
82 <artifactId>onos-maven-plugin</artifactId>
83 </plugin>
84 </plugins>
85 </build>
86
87</project>