blob: d01ecc85b6a147f2f628fee315c4351064094efc [file] [log] [blame]
Aaron Kruglikov9f95f992017-06-23 14:15:25 +09001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2017-present Open Networking Foundation
Aaron Kruglikov9f95f992017-06-23 14:15:25 +09004 ~
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-services</artifactId>
21 <groupId>org.onosproject</groupId>
Ray Milkey9f9a7522017-11-10 16:21:23 -080022 <version>1.12.0-b2</version>
Aaron Kruglikov9f95f992017-06-23 14:15:25 +090023 <relativePath>../pom.xml</relativePath>
24 </parent>
25
26 <artifactId>onos-incubator-protobuf-services-nb</artifactId>
27 <packaging>bundle</packaging>
28
29 <description>ONOS northbound gRPC services</description>
30 <url>http://onosproject.org</url>
31
32 <properties>
33 <onos.app.name>org.onosproject.incubator.protobuf.services.nb</onos.app.name>
34 <onos.app.title>ONOS gRPC Northbound Services</onos.app.title>
35 </properties>
36
37 <dependencies>
38
39 <dependency>
40 <groupId>org.onosproject</groupId>
41 <artifactId>onos-incubator-protobuf-models</artifactId>
42 <version>${project.version}</version>
43 </dependency>
Yuta HIGUCHI24f74db2017-08-29 20:50:47 -070044
Aaron Kruglikovae7e3b82017-05-03 14:13:53 -070045 <dependency>
46 <groupId>org.onosproject</groupId>
Yuta HIGUCHI24f74db2017-08-29 20:50:47 -070047 <artifactId>onos-incubator-grpc-api</artifactId>
Aaron Kruglikovae7e3b82017-05-03 14:13:53 -070048 <version>${project.version}</version>
49 </dependency>
Aaron Kruglikov9f95f992017-06-23 14:15:25 +090050
51 </dependencies>
52
53 <build>
54
55 <pluginManagement>
56 <plugins>
57 <plugin>
58 <groupId>org.apache.karaf.tooling</groupId>
59 <artifactId>karaf-maven-plugin</artifactId>
60 <version>3.0.8</version>
61 <extensions>true</extensions>
62 </plugin>
63 </plugins>
64 </pluginManagement>
65
66 <plugins>
67 <!-- TODO This is included to suppress the generation of javadocs for
68 this package. There is a problem when we try to package the
69 auto-generated code's javadoc into a jar. -->
70 <plugin>
71 <groupId>org.apache.maven.plugins</groupId>
72 <artifactId>maven-javadoc-plugin</artifactId>
73 <configuration>
74 <sourcepath>${basedir}/src/main/java/</sourcepath>
75 <excludePackageNames>org.onosproject.incubator.rpc.grpc</excludePackageNames>
76 </configuration>
77 </plugin>
78
79 <plugin>
80 <groupId>org.apache.felix</groupId>
81 <artifactId>maven-bundle-plugin</artifactId>
82 <extensions>true</extensions>
83 <configuration>
84 <instructions>
Yuta HIGUCHI24f74db2017-08-29 20:50:47 -070085 <Export-Package>org.onosproject.grpc.net,org.onosproject.protobuf.services.nb</Export-Package>
Aaron Kruglikov9f95f992017-06-23 14:15:25 +090086 </instructions>
87 </configuration>
88 </plugin>
89
90 <plugin>
91 <groupId>org.apache.maven.plugins</groupId>
92 <artifactId>maven-compiler-plugin</artifactId>
93 </plugin>
94
95 <plugin>
96 <groupId>org.apache.felix</groupId>
97 <artifactId>maven-scr-plugin</artifactId>
98 </plugin>
99
100 <plugin>
101 <groupId>org.xolstice.maven.plugins</groupId>
102 <artifactId>protobuf-maven-plugin</artifactId>
103 </plugin>
104
105 <plugin>
106 <groupId>org.codehaus.mojo</groupId>
107 <artifactId>build-helper-maven-plugin</artifactId>
108 </plugin>
109
110 <plugin>
111 <groupId>org.onosproject</groupId>
112 <artifactId>onos-maven-plugin</artifactId>
113 </plugin>
114
115 </plugins>
116 </build>
117
118</project>