blob: 5530ba5029f158f0b15b1399753b59bdcc214507 [file] [log] [blame]
Thomas Vachuskad3858e42015-04-22 22:05:49 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2015-present Open Networking Foundation
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>
ONOS Jenkins User32ebb5a2018-01-09 01:54:28 +000025 <version>1.13.0-b8</version>
Thomas Vachuskad3858e42015-04-22 22:05:49 -070026 </parent>
27
Thomas Vachuskad24aa7f2015-05-14 18:37:54 -070028 <artifactId>onos-incubator</artifactId>
Thomas Vachuskad3858e42015-04-22 22:05:49 -070029 <packaging>pom</packaging>
30
31 <description>ONOS Incubator root project</description>
32
33 <modules>
34 <module>api</module>
35 <module>net</module>
36 <module>store</module>
Yuta HIGUCHIa0557a22017-01-11 16:22:53 -080037 <module>protobuf-dependencies</module>
38 <module>grpc-dependencies</module>
HIGUCHI Yuta3fce2422016-05-11 18:41:41 -070039 <module>protobuf</module>
HIGUCHI Yuta279b8d12015-11-04 10:58:06 -080040 <module>rpc</module>
Jian Lic9b4bf12017-06-26 23:50:32 +090041 <module>rpc-grpc</module>
Jonathan Hart097c8f52016-06-09 18:08:11 -070042 <module>rpc-nb</module>
43 <module>protobuf-nb</module>
44 <module>grpc</module>
Thomas Vachuskad3858e42015-04-22 22:05:49 -070045 </modules>
46
47 <dependencies>
48 <dependency>
49 <groupId>org.onosproject</groupId>
50 <artifactId>onos-api</artifactId>
51 </dependency>
Brian O'Connor6de2e202015-05-21 14:30:41 -070052
53 <dependency>
54 <groupId>org.onosproject</groupId>
55 <artifactId>onos-api</artifactId>
56 <classifier>tests</classifier>
57 <scope>test</scope>
58 </dependency>
Sean Condon0e89bda2017-03-21 14:23:19 +000059<!-- <dependency> -->
60<!-- <groupId>com.google.guava</groupId> -->
61<!-- <artifactId>guava</artifactId> -->
62<!-- </dependency> -->
Thomas Vachuskad3858e42015-04-22 22:05:49 -070063 <dependency>
64 <groupId>org.onosproject</groupId>
65 <artifactId>onlab-misc</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>org.onosproject</groupId>
69 <artifactId>onlab-junit</artifactId>
70 <scope>test</scope>
71 </dependency>
72 <dependency>
73 <groupId>org.osgi</groupId>
74 <artifactId>org.osgi.compendium</artifactId>
75 </dependency>
76 </dependencies>
77
78 <build>
79 <plugins>
80 <plugin>
81 <groupId>org.apache.felix</groupId>
82 <artifactId>maven-bundle-plugin</artifactId>
83 </plugin>
Thomas Vachuskad3858e42015-04-22 22:05:49 -070084 <plugin>
85 <groupId>org.onosproject</groupId>
86 <artifactId>onos-maven-plugin</artifactId>
87 </plugin>
88 </plugins>
89 </build>
90
91</project>