Yuta HIGUCHI | 24f74db | 2017-08-29 20:50:47 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright 2017-present Open Networking Foundation |
| 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> |
| 20 | <artifactId>onos-incubator-protobuf</artifactId> |
| 21 | <groupId>org.onosproject</groupId> |
ONOS Jenkins User | aa868b6 | 2018-04-13 23:05:13 +0000 | [diff] [blame] | 22 | <version>1.13.0-SNAPSHOT</version> |
Yuta HIGUCHI | 24f74db | 2017-08-29 20:50:47 -0700 | [diff] [blame] | 23 | <relativePath>../pom.xml</relativePath> |
| 24 | </parent> |
| 25 | |
| 26 | <artifactId>onos-incubator-protobuf-registry</artifactId> |
| 27 | <packaging>bundle</packaging> |
| 28 | |
| 29 | <description>gRPC service registry</description> |
| 30 | <url>http://onosproject.org</url> |
| 31 | |
| 32 | <properties> |
| 33 | <onos.app.name>org.onosproject.incubator.grpc.registry</onos.app.name> |
| 34 | </properties> |
| 35 | |
| 36 | <dependencies> |
| 37 | |
| 38 | <dependency> |
| 39 | <groupId>org.onosproject</groupId> |
| 40 | <artifactId>onos-incubator-grpc-api</artifactId> |
| 41 | <version>${project.version}</version> |
| 42 | </dependency> |
| 43 | |
| 44 | </dependencies> |
| 45 | |
| 46 | <build> |
| 47 | |
| 48 | <plugins> |
| 49 | |
| 50 | <plugin> |
| 51 | <groupId>org.apache.felix</groupId> |
| 52 | <artifactId>maven-bundle-plugin</artifactId> |
| 53 | <extensions>true</extensions> |
| 54 | </plugin> |
| 55 | |
| 56 | <plugin> |
| 57 | <groupId>org.apache.maven.plugins</groupId> |
| 58 | <artifactId>maven-compiler-plugin</artifactId> |
| 59 | </plugin> |
| 60 | |
| 61 | <plugin> |
| 62 | <groupId>org.apache.felix</groupId> |
| 63 | <artifactId>maven-scr-plugin</artifactId> |
| 64 | </plugin> |
| 65 | |
| 66 | <plugin> |
| 67 | <groupId>org.codehaus.mojo</groupId> |
| 68 | <artifactId>build-helper-maven-plugin</artifactId> |
| 69 | </plugin> |
| 70 | |
| 71 | <plugin> |
| 72 | <groupId>org.onosproject</groupId> |
| 73 | <artifactId>onos-maven-plugin</artifactId> |
| 74 | </plugin> |
| 75 | |
| 76 | </plugins> |
| 77 | </build> |
| 78 | |
| 79 | </project> |