blob: 8c197ad9279ed9341e256f48842dd4343685c0f6 [file] [log] [blame]
Thomas Vachuskaabfe8d32014-10-23 15:59:32 -07001<?xml version="1.0" encoding="UTF-8"?>
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07002<!--
3 ~ Copyright 2014 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 -->
Thomas Vachuskaabfe8d32014-10-23 15:59:32 -070017<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <prerequisites>
23 <maven>3.0.0</maven>
24 </prerequisites>
25
26 <parent>
Brian O'Connorabafb502014-12-02 22:26:20 -080027 <groupId>org.onosproject</groupId>
Thomas Vachuskaabfe8d32014-10-23 15:59:32 -070028 <artifactId>onos</artifactId>
Brian O'Connor955c3162016-03-10 15:27:19 -080029 <version>1.6.0-SNAPSHOT</version>
Thomas Vachuskaabfe8d32014-10-23 15:59:32 -070030 <relativePath>../pom.xml</relativePath>
31 </parent>
32
33 <artifactId>onos-docs-external</artifactId>
34 <packaging>pom</packaging>
35
36 <description>ONOS Java API documentation</description>
37
38 <modules>
39 <module>..</module>
40 </modules>
41
Brian O'Connor3439c102014-12-03 01:02:03 -080042 <url>http://onosproject.org/</url>
Thomas Vachuskaabfe8d32014-10-23 15:59:32 -070043
44 <build>
45 <plugins>
46 <plugin>
47 <groupId>org.apache.maven.plugins</groupId>
48 <artifactId>maven-javadoc-plugin</artifactId>
Thomas Vachuskaabfe8d32014-10-23 15:59:32 -070049 <configuration>
50 <show>package</show>
HIGUCHI Yuta15653fd2015-11-09 11:05:09 -080051 <sourceFileExcludes>
52 <sourceFileExclude>**/generated-sources/**</sourceFileExclude>
53 </sourceFileExcludes>
Thomas Vachuska84e09fb2016-02-17 10:57:05 -080054 <excludePackageNames>@external-excludes</excludePackageNames>
Thomas Vachuskaabfe8d32014-10-23 15:59:32 -070055 <docfilessubdirs>true</docfilessubdirs>
Brian O'Connor955c3162016-03-10 15:27:19 -080056 <doctitle>ONOS Java API (1.6.0-SNAPSHOT)</doctitle>
Thomas Vachuskaabfe8d32014-10-23 15:59:32 -070057 <groups>
58 <group>
59 <title>Network Model &amp; Services</title>
Thomas Vachuskaf906fcf2015-08-31 13:33:07 -070060 <packages>@external-apis</packages>
Thomas Vachuskaabfe8d32014-10-23 15:59:32 -070061 </group>
Thomas Vachuskad3858e42015-04-22 22:05:49 -070062 <group>
andreafaa2c4b2015-11-16 13:48:39 -080063 <title>Incubator for Network Model &amp; Services
64 </title>
Thomas Vachuskaf906fcf2015-08-31 13:33:07 -070065 <packages>@external-incubator-apis</packages>
66 </group>
67 <group>
68 <title>Utilities</title>
69 <packages>@utils</packages>
Thomas Vachuskad3858e42015-04-22 22:05:49 -070070 </group>
Thomas Vachuska84e09fb2016-02-17 10:57:05 -080071 <group>
72 <title>App &amp; Extensions</title>
73 <packages>@external-apps</packages>
74 </group>
Thomas Vachuskaabfe8d32014-10-23 15:59:32 -070075 </groups>
andreafaa2c4b2015-11-16 13:48:39 -080076 <tags>
77 <tag>
Andrea Campanella10c4adc2015-12-03 15:27:54 -080078 <name>onos.rsModel</name>
andreafaa2c4b2015-11-16 13:48:39 -080079 <placement>m</placement>
80 <head>Json model for REST api:</head>
81 </tag>
82 </tags>
Thomas Vachuskaabfe8d32014-10-23 15:59:32 -070083 </configuration>
84 </plugin>
85 </plugins>
86 </build>
87
88</project>