blob: 5e658e8b9caf42374cb98e6488ae094696741fbf [file] [log] [blame]
Aaron Kruglikov9f95f992017-06-23 14:15:25 +09001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2017-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<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>
22 <version>1.11.0-SNAPSHOT</version>
23 <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>
44
45 </dependencies>
46
47 <build>
48
49 <pluginManagement>
50 <plugins>
51 <plugin>
52 <groupId>org.apache.karaf.tooling</groupId>
53 <artifactId>karaf-maven-plugin</artifactId>
54 <version>3.0.8</version>
55 <extensions>true</extensions>
56 </plugin>
57 </plugins>
58 </pluginManagement>
59
60 <plugins>
61 <!-- TODO This is included to suppress the generation of javadocs for
62 this package. There is a problem when we try to package the
63 auto-generated code's javadoc into a jar. -->
64 <plugin>
65 <groupId>org.apache.maven.plugins</groupId>
66 <artifactId>maven-javadoc-plugin</artifactId>
67 <configuration>
68 <sourcepath>${basedir}/src/main/java/</sourcepath>
69 <excludePackageNames>org.onosproject.incubator.rpc.grpc</excludePackageNames>
70 </configuration>
71 </plugin>
72
73 <plugin>
74 <groupId>org.apache.felix</groupId>
75 <artifactId>maven-bundle-plugin</artifactId>
76 <extensions>true</extensions>
77 <configuration>
78 <instructions>
79 <Export-Package>org.onosproject.grpc.net,org.onosproject.incubator.protobuf.services.nb</Export-Package>
80 </instructions>
81 </configuration>
82 </plugin>
83
84 <plugin>
85 <groupId>org.apache.maven.plugins</groupId>
86 <artifactId>maven-compiler-plugin</artifactId>
87 </plugin>
88
89 <plugin>
90 <groupId>org.apache.felix</groupId>
91 <artifactId>maven-scr-plugin</artifactId>
92 </plugin>
93
94 <plugin>
95 <groupId>org.xolstice.maven.plugins</groupId>
96 <artifactId>protobuf-maven-plugin</artifactId>
97 </plugin>
98
99 <plugin>
100 <groupId>org.codehaus.mojo</groupId>
101 <artifactId>build-helper-maven-plugin</artifactId>
102 </plugin>
103
104 <plugin>
105 <groupId>org.onosproject</groupId>
106 <artifactId>onos-maven-plugin</artifactId>
107 </plugin>
108
109 </plugins>
110 </build>
111
112</project>