Jonathan Hart | 097c8f5 | 2016-06-09 18:08:11 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright 2016-present Open Networking Laboratory |
| 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> |
| 22 | <artifactId>onos-incubator</artifactId> |
| 23 | <groupId>org.onosproject</groupId> |
| 24 | <version>1.7.0-SNAPSHOT</version> |
| 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | |
| 28 | <artifactId>onos-incubator-rpc-nb</artifactId> |
| 29 | <packaging>bundle</packaging> |
| 30 | |
| 31 | <description>ONOS northbound RPC based on gRPC</description> |
| 32 | <url>http://onosproject.org</url> |
| 33 | |
| 34 | <properties> |
| 35 | <onos.app.name>org.onosproject.incubator.rpc-nb</onos.app.name> |
| 36 | <onos.app.title>ONOS gRPC Northbound API</onos.app.title> |
| 37 | <onos.app.requires>org.onosproject.incubator.grpc</onos.app.requires> |
Yuta HIGUCHI | 179af1e | 2016-08-23 15:36:44 -0700 | [diff] [blame] | 38 | <grpc.version>1.0.0</grpc.version> |
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> |
| 45 | </dependency> |
| 46 | |
| 47 | <dependency> |
| 48 | <groupId>org.onosproject</groupId> |
| 49 | <artifactId>onos-incubator-api</artifactId> |
| 50 | </dependency> |
| 51 | |
| 52 | <dependency> |
| 53 | <groupId>org.onosproject</groupId> |
| 54 | <artifactId>onlab-osgi</artifactId> |
| 55 | </dependency> |
| 56 | |
| 57 | <dependency> |
| 58 | <groupId>io.grpc</groupId> |
| 59 | <artifactId>grpc-core</artifactId> |
| 60 | <version>${grpc.version}</version> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>io.grpc</groupId> |
| 64 | <artifactId>grpc-protobuf</artifactId> |
| 65 | <version>${grpc.version}</version> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>io.grpc</groupId> |
| 69 | <artifactId>grpc-stub</artifactId> |
| 70 | <version>${grpc.version}</version> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>io.grpc</groupId> |
| 74 | <artifactId>grpc-netty</artifactId> |
| 75 | <version>${grpc.version}</version> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>io.grpc</groupId> |
| 79 | <artifactId>grpc-auth</artifactId> |
| 80 | <version>${grpc.version}</version> |
| 81 | </dependency> |
| 82 | |
| 83 | <dependency> |
| 84 | <groupId>org.onosproject</groupId> |
| 85 | <artifactId>onos-incubator-protobuf-nb</artifactId> |
| 86 | <version>${project.version}</version> |
| 87 | </dependency> |
| 88 | |
| 89 | <dependency> |
| 90 | <groupId>org.apache.felix</groupId> |
| 91 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 92 | <scope>provided</scope> |
| 93 | </dependency> |
| 94 | |
| 95 | </dependencies> |
| 96 | |
| 97 | <build> |
| 98 | <plugins> |
| 99 | <plugin> |
| 100 | <groupId>org.apache.felix</groupId> |
| 101 | <artifactId>maven-scr-plugin</artifactId> |
| 102 | <executions> |
| 103 | <execution> |
| 104 | <id>generate-scr-srcdescriptor</id> |
| 105 | <goals> |
| 106 | <goal>scr</goal> |
| 107 | </goals> |
| 108 | </execution> |
| 109 | </executions> |
| 110 | <configuration> |
| 111 | <!-- avoid searching into wrong source path --> |
| 112 | <scanClasses>true</scanClasses> |
| 113 | <supportedProjectTypes> |
| 114 | <supportedProjectType>bundle</supportedProjectType> |
| 115 | <supportedProjectType>war</supportedProjectType> |
| 116 | </supportedProjectTypes> |
| 117 | </configuration> |
| 118 | </plugin> |
| 119 | </plugins> |
| 120 | </build> |
| 121 | |
| 122 | </project> |