HIGUCHI Yuta | 3fce242 | 2016-05-11 18:41:41 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2017-present Open Networking Foundation |
HIGUCHI Yuta | 3fce242 | 2016-05-11 18:41:41 -0700 | [diff] [blame] | 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 | --> |
| 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 Kruglikov | 9f95f99 | 2017-06-23 14:15:25 +0900 | [diff] [blame] | 20 | <artifactId>onos-incubator-grpc-dependencies</artifactId> |
HIGUCHI Yuta | 3fce242 | 2016-05-11 18:41:41 -0700 | [diff] [blame] | 21 | <groupId>org.onosproject</groupId> |
ONOS Jenkins User | 45d340c | 2018-01-09 01:56:13 +0000 | [diff] [blame] | 22 | <version>1.13.0-SNAPSHOT</version> |
Aaron Kruglikov | 9f95f99 | 2017-06-23 14:15:25 +0900 | [diff] [blame] | 23 | <relativePath>../grpc-dependencies/pom.xml</relativePath> |
HIGUCHI Yuta | 3fce242 | 2016-05-11 18:41:41 -0700 | [diff] [blame] | 24 | </parent> |
| 25 | |
| 26 | <artifactId>onos-incubator-protobuf</artifactId> |
Aaron Kruglikov | 9f95f99 | 2017-06-23 14:15:25 +0900 | [diff] [blame] | 27 | <packaging>pom</packaging> |
HIGUCHI Yuta | 3fce242 | 2016-05-11 18:41:41 -0700 | [diff] [blame] | 28 | |
Aaron Kruglikov | 9f95f99 | 2017-06-23 14:15:25 +0900 | [diff] [blame] | 29 | <description>ONOS ProtoBuf and gRPC functionality root</description> |
HIGUCHI Yuta | 3fce242 | 2016-05-11 18:41:41 -0700 | [diff] [blame] | 30 | <url>http://onosproject.org</url> |
| 31 | |
| 32 | <properties> |
| 33 | <onos.app.name>org.onosproject.incubator.protobuf</onos.app.name> |
Yuta HIGUCHI | 9efba1e | 2016-07-09 11:07:13 -0700 | [diff] [blame] | 34 | <onos.app.title>ONOS Protocol Buffers models</onos.app.title> |
HIGUCHI Yuta | 3fce242 | 2016-05-11 18:41:41 -0700 | [diff] [blame] | 35 | </properties> |
| 36 | |
| 37 | <dependencies> |
| 38 | |
| 39 | <dependency> |
Yuta HIGUCHI | a0557a2 | 2017-01-11 16:22:53 -0800 | [diff] [blame] | 40 | <groupId>org.onosproject</groupId> |
| 41 | <artifactId>onos-api</artifactId> |
| 42 | <version>${project.version}</version> |
| 43 | </dependency> |
| 44 | |
| 45 | <dependency> |
HIGUCHI Yuta | 3fce242 | 2016-05-11 18:41:41 -0700 | [diff] [blame] | 46 | <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 Kruglikov | 9f95f99 | 2017-06-23 14:15:25 +0900 | [diff] [blame] | 59 | <modules> |
Yuta HIGUCHI | 24f74db | 2017-08-29 20:50:47 -0700 | [diff] [blame] | 60 | <module>api</module> |
| 61 | <module>registry</module> |
Aaron Kruglikov | 9f95f99 | 2017-06-23 14:15:25 +0900 | [diff] [blame] | 62 | <module>models</module> |
| 63 | <module>services</module> |
| 64 | </modules> |
HIGUCHI Yuta | 3fce242 | 2016-05-11 18:41:41 -0700 | [diff] [blame] | 65 | |
| 66 | </project> |