Jonathan Hart | 097c8f5 | 2016-06-09 18:08:11 -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 2016-present Open Networking Foundation |
Jonathan Hart | 097c8f5 | 2016-06-09 18:08:11 -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 | |
| 18 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 19 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 21 | <parent> |
Yuta HIGUCHI | a0557a2 | 2017-01-11 16:22:53 -0800 | [diff] [blame] | 22 | <artifactId>onos-incubator-grpc-dependencies</artifactId> |
Jonathan Hart | 097c8f5 | 2016-06-09 18:08:11 -0700 | [diff] [blame] | 23 | <groupId>org.onosproject</groupId> |
Ray Milkey | 0a64b86 | 2017-09-08 14:39:41 -0700 | [diff] [blame] | 24 | <version>1.11.1-SNAPSHOT</version> |
Yuta HIGUCHI | a0557a2 | 2017-01-11 16:22:53 -0800 | [diff] [blame] | 25 | <relativePath>../grpc-dependencies/pom.xml</relativePath> |
Jonathan Hart | 097c8f5 | 2016-06-09 18:08:11 -0700 | [diff] [blame] | 26 | </parent> |
| 27 | <modelVersion>4.0.0</modelVersion> |
| 28 | |
| 29 | <artifactId>onos-incubator-rpc-nb</artifactId> |
| 30 | <packaging>bundle</packaging> |
| 31 | |
| 32 | <description>ONOS northbound RPC based on gRPC</description> |
| 33 | <url>http://onosproject.org</url> |
| 34 | |
| 35 | <properties> |
| 36 | <onos.app.name>org.onosproject.incubator.rpc-nb</onos.app.name> |
| 37 | <onos.app.title>ONOS gRPC Northbound API</onos.app.title> |
| 38 | <onos.app.requires>org.onosproject.incubator.grpc</onos.app.requires> |
Jonathan Hart | 097c8f5 | 2016-06-09 18:08:11 -0700 | [diff] [blame] | 39 | </properties> |
| 40 | |
| 41 | <dependencies> |
| 42 | <dependency> |
| 43 | <groupId>org.onosproject</groupId> |
| 44 | <artifactId>onos-api</artifactId> |
Yuta HIGUCHI | a0557a2 | 2017-01-11 16:22:53 -0800 | [diff] [blame] | 45 | <version>${project.version}</version> |
Jonathan Hart | 097c8f5 | 2016-06-09 18:08:11 -0700 | [diff] [blame] | 46 | </dependency> |
| 47 | |
| 48 | <dependency> |
| 49 | <groupId>org.onosproject</groupId> |
| 50 | <artifactId>onos-incubator-api</artifactId> |
Yuta HIGUCHI | a0557a2 | 2017-01-11 16:22:53 -0800 | [diff] [blame] | 51 | <version>${project.version}</version> |
Jonathan Hart | 097c8f5 | 2016-06-09 18:08:11 -0700 | [diff] [blame] | 52 | </dependency> |
| 53 | |
| 54 | <dependency> |
| 55 | <groupId>org.onosproject</groupId> |
| 56 | <artifactId>onlab-osgi</artifactId> |
Yuta HIGUCHI | a0557a2 | 2017-01-11 16:22:53 -0800 | [diff] [blame] | 57 | <version>${project.version}</version> |
Jonathan Hart | 097c8f5 | 2016-06-09 18:08:11 -0700 | [diff] [blame] | 58 | </dependency> |
| 59 | |
| 60 | <dependency> |
| 61 | <groupId>io.grpc</groupId> |
| 62 | <artifactId>grpc-core</artifactId> |
Jonathan Hart | 097c8f5 | 2016-06-09 18:08:11 -0700 | [diff] [blame] | 63 | </dependency> |
Yuta HIGUCHI | a0557a2 | 2017-01-11 16:22:53 -0800 | [diff] [blame] | 64 | |
Jonathan Hart | 097c8f5 | 2016-06-09 18:08:11 -0700 | [diff] [blame] | 65 | <dependency> |
| 66 | <groupId>io.grpc</groupId> |
| 67 | <artifactId>grpc-protobuf</artifactId> |
Jonathan Hart | 097c8f5 | 2016-06-09 18:08:11 -0700 | [diff] [blame] | 68 | </dependency> |
Yuta HIGUCHI | a0557a2 | 2017-01-11 16:22:53 -0800 | [diff] [blame] | 69 | |
Jonathan Hart | 097c8f5 | 2016-06-09 18:08:11 -0700 | [diff] [blame] | 70 | <dependency> |
| 71 | <groupId>io.grpc</groupId> |
| 72 | <artifactId>grpc-stub</artifactId> |
Jonathan Hart | 097c8f5 | 2016-06-09 18:08:11 -0700 | [diff] [blame] | 73 | </dependency> |
Yuta HIGUCHI | a0557a2 | 2017-01-11 16:22:53 -0800 | [diff] [blame] | 74 | |
Jonathan Hart | 097c8f5 | 2016-06-09 18:08:11 -0700 | [diff] [blame] | 75 | <dependency> |
| 76 | <groupId>io.grpc</groupId> |
| 77 | <artifactId>grpc-netty</artifactId> |
Jonathan Hart | 097c8f5 | 2016-06-09 18:08:11 -0700 | [diff] [blame] | 78 | </dependency> |
Yuta HIGUCHI | a0557a2 | 2017-01-11 16:22:53 -0800 | [diff] [blame] | 79 | |
Jonathan Hart | 097c8f5 | 2016-06-09 18:08:11 -0700 | [diff] [blame] | 80 | <dependency> |
| 81 | <groupId>io.grpc</groupId> |
| 82 | <artifactId>grpc-auth</artifactId> |
Jonathan Hart | 097c8f5 | 2016-06-09 18:08:11 -0700 | [diff] [blame] | 83 | </dependency> |
| 84 | |
| 85 | <dependency> |
| 86 | <groupId>org.onosproject</groupId> |
| 87 | <artifactId>onos-incubator-protobuf-nb</artifactId> |
| 88 | <version>${project.version}</version> |
| 89 | </dependency> |
| 90 | |
| 91 | <dependency> |
| 92 | <groupId>org.apache.felix</groupId> |
| 93 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 94 | <scope>provided</scope> |
| 95 | </dependency> |
| 96 | |
| 97 | </dependencies> |
| 98 | |
| 99 | <build> |
| 100 | <plugins> |
| 101 | <plugin> |
| 102 | <groupId>org.apache.felix</groupId> |
| 103 | <artifactId>maven-scr-plugin</artifactId> |
Jonathan Hart | 097c8f5 | 2016-06-09 18:08:11 -0700 | [diff] [blame] | 104 | </plugin> |
| 105 | </plugins> |
| 106 | </build> |
| 107 | |
| 108 | </project> |