blob: 48c99844a4cabf00d97cd3c58cbeb568877f6924 [file] [log] [blame]
HIGUCHI Yuta3fce2422016-05-11 18:41:41 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Aaron Kruglikov9f95f992017-06-23 14:15:25 +09003 ~ Copyright 2017-present Open Networking Laboratory
HIGUCHI Yuta3fce2422016-05-11 18:41:41 -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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
18 <modelVersion>4.0.0</modelVersion>
19 <parent>
Aaron Kruglikov9f95f992017-06-23 14:15:25 +090020 <artifactId>onos-incubator-grpc-dependencies</artifactId>
HIGUCHI Yuta3fce2422016-05-11 18:41:41 -070021 <groupId>org.onosproject</groupId>
Ray Milkey08b03a92017-05-15 11:26:33 -070022 <version>1.11.0-SNAPSHOT</version>
Aaron Kruglikov9f95f992017-06-23 14:15:25 +090023 <relativePath>../grpc-dependencies/pom.xml</relativePath>
HIGUCHI Yuta3fce2422016-05-11 18:41:41 -070024 </parent>
25
26 <artifactId>onos-incubator-protobuf</artifactId>
Aaron Kruglikov9f95f992017-06-23 14:15:25 +090027 <packaging>pom</packaging>
HIGUCHI Yuta3fce2422016-05-11 18:41:41 -070028
Aaron Kruglikov9f95f992017-06-23 14:15:25 +090029 <description>ONOS ProtoBuf and gRPC functionality root</description>
HIGUCHI Yuta3fce2422016-05-11 18:41:41 -070030 <url>http://onosproject.org</url>
31
32 <properties>
33 <onos.app.name>org.onosproject.incubator.protobuf</onos.app.name>
Yuta HIGUCHI9efba1e2016-07-09 11:07:13 -070034 <onos.app.title>ONOS Protocol Buffers models</onos.app.title>
HIGUCHI Yuta3fce2422016-05-11 18:41:41 -070035 </properties>
36
37 <dependencies>
38
39 <dependency>
Yuta HIGUCHIa0557a22017-01-11 16:22:53 -080040 <groupId>org.onosproject</groupId>
41 <artifactId>onos-api</artifactId>
42 <version>${project.version}</version>
43 </dependency>
44
45 <dependency>
HIGUCHI Yuta3fce2422016-05-11 18:41:41 -070046 <groupId>com.google.protobuf</groupId>
47 <artifactId>protobuf-java</artifactId>
48 <version>${protobuf.version}</version>
49 </dependency>
50
51 <dependency>
52 <groupId>org.apache.felix</groupId>
53 <artifactId>org.apache.felix.scr.annotations</artifactId>
54 <scope>provided</scope>
55 </dependency>
56
57 </dependencies>
58
Aaron Kruglikov9f95f992017-06-23 14:15:25 +090059 <modules>
60 <module>models</module>
61 <module>services</module>
62 </modules>
HIGUCHI Yuta3fce2422016-05-11 18:41:41 -070063
64</project>