blob: c95977b9cb7397fd0f56ec99f84ef8d38401070f [file] [log] [blame]
Yuta HIGUCHI24f74db2017-08-29 20:50:47 -07001<?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 User32ebb5a2018-01-09 01:54:28 +000022 <version>1.13.0-b8</version>
Yuta HIGUCHI24f74db2017-08-29 20:50:47 -070023 <relativePath>../pom.xml</relativePath>
24 </parent>
25
26 <artifactId>onos-incubator-grpc-api</artifactId>
27 <packaging>bundle</packaging>
28
29 <description>ONOS gRPC service registry API</description>
30 <url>http://onosproject.org</url>
31
32 <properties>
33 </properties>
34
35 <build>
36
37 <plugins>
38
39 <plugin>
40 <groupId>org.apache.felix</groupId>
41 <artifactId>maven-bundle-plugin</artifactId>
42 <extensions>true</extensions>
43 </plugin>
44
45 <plugin>
46 <groupId>org.apache.maven.plugins</groupId>
47 <artifactId>maven-compiler-plugin</artifactId>
48 </plugin>
49
50 <plugin>
51 <groupId>org.apache.felix</groupId>
52 <artifactId>maven-scr-plugin</artifactId>
53 </plugin>
54
55 <plugin>
56 <groupId>org.onosproject</groupId>
57 <artifactId>onos-maven-plugin</artifactId>
58 </plugin>
59
60 </plugins>
61 </build>
62
63</project>