blob: df793add18080227a9525d6d28ec9007c812155e [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'Connore642f7c2016-05-23 18:33:04 -070025 <version>1.7.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 Yuta3fce2422016-05-11 18:41:41 -070039 <module>protobuf</module>
HIGUCHI Yuta279b8d12015-11-04 10:58:06 -080040 <module>rpc</module>
HIGUCHI Yuta15653fd2015-11-09 11:05:09 -080041 <module>rpc-grpc</module>
Thomas Vachuskad3858e42015-04-22 22:05:49 -070042 </modules>
43
44 <dependencies>
45 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onos-api</artifactId>
48 </dependency>
Brian O'Connor6de2e202015-05-21 14:30:41 -070049
50 <dependency>
51 <groupId>org.onosproject</groupId>
52 <artifactId>onos-api</artifactId>
53 <classifier>tests</classifier>
54 <scope>test</scope>
55 </dependency>
Thomas Vachuskad3858e42015-04-22 22:05:49 -070056 <dependency>
57 <groupId>com.google.guava</groupId>
58 <artifactId>guava</artifactId>
59 </dependency>
60 <dependency>
61 <groupId>org.onosproject</groupId>
62 <artifactId>onlab-misc</artifactId>
63 </dependency>
64 <dependency>
65 <groupId>org.onosproject</groupId>
66 <artifactId>onlab-junit</artifactId>
67 <scope>test</scope>
68 </dependency>
69 <dependency>
70 <groupId>org.osgi</groupId>
71 <artifactId>org.osgi.compendium</artifactId>
72 </dependency>
73 </dependencies>
74
75 <build>
76 <plugins>
77 <plugin>
78 <groupId>org.apache.felix</groupId>
79 <artifactId>maven-bundle-plugin</artifactId>
80 </plugin>
Thomas Vachuskad3858e42015-04-22 22:05:49 -070081 <plugin>
82 <groupId>org.onosproject</groupId>
83 <artifactId>onos-maven-plugin</artifactId>
84 </plugin>
85 </plugins>
86 </build>
87
88</project>