blob: b377ad39fcdc0fcce6970378ff667aaebc111dc6 [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>
ONOS Jenkins User3594c242018-08-14 22:13:02 +000022 <version>1.14.0-rc2</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>
Ray Milkeycf16bb22018-06-22 20:28:05 -070050 <dependency>
51 <groupId>org.onosproject</groupId>
52 <artifactId>onos-api</artifactId>
53 <version>${project.version}</version>
54 <classifier>tests</classifier>
55 <scope>test</scope>
56 </dependency>
Aaron Kruglikov9f95f992017-06-23 14:15:25 +090057
58 </dependencies>
59
60 <build>
61
62 <pluginManagement>
63 <plugins>
64 <plugin>
65 <groupId>org.apache.karaf.tooling</groupId>
66 <artifactId>karaf-maven-plugin</artifactId>
67 <version>3.0.8</version>
68 <extensions>true</extensions>
69 </plugin>
70 </plugins>
71 </pluginManagement>
72
73 <plugins>
74 <!-- TODO This is included to suppress the generation of javadocs for
75 this package. There is a problem when we try to package the
76 auto-generated code's javadoc into a jar. -->
77 <plugin>
78 <groupId>org.apache.maven.plugins</groupId>
79 <artifactId>maven-javadoc-plugin</artifactId>
80 <configuration>
81 <sourcepath>${basedir}/src/main/java/</sourcepath>
82 <excludePackageNames>org.onosproject.incubator.rpc.grpc</excludePackageNames>
83 </configuration>
84 </plugin>
85
86 <plugin>
87 <groupId>org.apache.felix</groupId>
88 <artifactId>maven-bundle-plugin</artifactId>
89 <extensions>true</extensions>
90 <configuration>
91 <instructions>
Yuta HIGUCHI24f74db2017-08-29 20:50:47 -070092 <Export-Package>org.onosproject.grpc.net,org.onosproject.protobuf.services.nb</Export-Package>
Aaron Kruglikov9f95f992017-06-23 14:15:25 +090093 </instructions>
94 </configuration>
95 </plugin>
96
97 <plugin>
98 <groupId>org.apache.maven.plugins</groupId>
99 <artifactId>maven-compiler-plugin</artifactId>
100 </plugin>
101
102 <plugin>
103 <groupId>org.apache.felix</groupId>
104 <artifactId>maven-scr-plugin</artifactId>
105 </plugin>
106
107 <plugin>
108 <groupId>org.xolstice.maven.plugins</groupId>
109 <artifactId>protobuf-maven-plugin</artifactId>
110 </plugin>
111
112 <plugin>
113 <groupId>org.codehaus.mojo</groupId>
114 <artifactId>build-helper-maven-plugin</artifactId>
115 </plugin>
116
117 <plugin>
118 <groupId>org.onosproject</groupId>
119 <artifactId>onos-maven-plugin</artifactId>
120 </plugin>
121
122 </plugins>
123 </build>
124
125</project>