blob: 81521ddd9f082c7038a84499d15afe00255a3122 [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</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-models</artifactId>
27 <packaging>bundle</packaging>
28
29 <description>ONOS Protobuf object models and translators</description>
30 <url>http://onosproject.org</url>
31
32 <properties>
33 <onos.app.name>org.onosproject.incubator.protobuf.models</onos.app.name>
34 <onos.app.title>ONOS Protocol Buffers models and translators</onos.app.title>
35 </properties>
36
37 <build>
38
39 <pluginManagement>
40 <plugins>
41 <plugin>
42 <groupId>org.apache.karaf.tooling</groupId>
43 <artifactId>karaf-maven-plugin</artifactId>
44 <version>3.0.8</version>
45 <extensions>true</extensions>
46 </plugin>
47 </plugins>
48 </pluginManagement>
49
50 <plugins>
51 <!-- TODO This is included to suppress the generation of javadocs for
52 this package. There is a problem when we try to package the
53 auto-generated code's javadoc into a jar. -->
54 <plugin>
55 <groupId>org.apache.maven.plugins</groupId>
56 <artifactId>maven-javadoc-plugin</artifactId>
57 <configuration>
58 <sourcepath>${basedir}/src/main/java/</sourcepath>
59 <excludePackageNames>org.onosproject.incubator.rpc.grpc</excludePackageNames>
60 </configuration>
61 </plugin>
62
63 <plugin>
64 <groupId>org.apache.felix</groupId>
65 <artifactId>maven-bundle-plugin</artifactId>
66 <extensions>true</extensions>
67 <configuration>
68 <instructions>
69 <Export-Package>org.onosproject.grpc.net,org.onosproject.incubator.protobuf.models.utils</Export-Package>
70 </instructions>
71 </configuration>
72 </plugin>
73
74 <plugin>
75 <groupId>org.apache.maven.plugins</groupId>
76 <artifactId>maven-compiler-plugin</artifactId>
77 </plugin>
78
79 <plugin>
80 <groupId>org.apache.felix</groupId>
81 <artifactId>maven-scr-plugin</artifactId>
82 </plugin>
83
84 <plugin>
85 <groupId>org.xolstice.maven.plugins</groupId>
86 <artifactId>protobuf-maven-plugin</artifactId>
87 </plugin>
88
89 <plugin>
90 <groupId>org.codehaus.mojo</groupId>
91 <artifactId>build-helper-maven-plugin</artifactId>
92 </plugin>
93
94 <plugin>
95 <groupId>org.onosproject</groupId>
96 <artifactId>onos-maven-plugin</artifactId>
97 </plugin>
98
99 </plugins>
100 </build>
101
102</project>