blob: d1525aaa0dc6c219abd04ffaf9e5db14294169e1 [file] [log] [blame]
Thomas Vachuskaf906fcf2015-08-31 13:33:07 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
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 -->
17<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>
27 <groupId>org.onosproject</groupId>
28 <artifactId>onos</artifactId>
Brian O'Connorf967ad62015-09-18 15:19:54 -070029 <version>1.4.0-SNAPSHOT</version>
Thomas Vachuskaf906fcf2015-08-31 13:33:07 -070030 <relativePath>../pom.xml</relativePath>
31 </parent>
32
33 <artifactId>onos-docs</artifactId>
34 <packaging>pom</packaging>
35
36 <description>ONOS Java API documentation</description>
37
38 <modules>
39 <module>..</module>
40 </modules>
41
42 <url>http://onosproject.org/</url>
43
44 <build>
45 <plugins>
46 <plugin>
47 <groupId>org.apache.maven.plugins</groupId>
48 <artifactId>maven-javadoc-plugin</artifactId>
49 <version>2.10.3</version>
50 <configuration>
51 <show>package</show>
52 <docfilessubdirs>true</docfilessubdirs>
Brian O'Connorf967ad62015-09-18 15:19:54 -070053 <doctitle>ONOS Java API (1.4.0-SNAPSHOT)</doctitle>
HIGUCHI Yuta15653fd2015-11-09 11:05:09 -080054 <excludePackageNames>@internal-excludes</excludePackageNames>
55 <sourceFileExcludes>
56 <sourceFileExclude>**/generated-sources/**</sourceFileExclude>
57 </sourceFileExcludes>
58
Thomas Vachuskaf906fcf2015-08-31 13:33:07 -070059 <groups>
60 <group>
61 <title>Network Model &amp; Services</title>
62 <packages>@internal-apis</packages>
63 </group>
64 <group>
andreafaa2c4b2015-11-16 13:48:39 -080065 <title>Incubator for Network Model &amp; Services
66 </title>
Thomas Vachuskaf906fcf2015-08-31 13:33:07 -070067 <packages>@internal-incubator-apis</packages>
68 </group>
69 <group>
70 <title>Core Subsystems</title>
71 <packages>@internal-core</packages>
72 </group>
73 <group>
74 <title>Distributed Stores</title>
75 <packages>@internal-stores</packages>
76 </group>
77 <group>
andreafaa2c4b2015-11-16 13:48:39 -080078 <title>Incubator for Core Subsystems &amp;
79 Distributed Stores
80 </title>
Thomas Vachuskaf906fcf2015-08-31 13:33:07 -070081 <packages>@internal-incubator</packages>
82 </group>
83 <group>
84 <title>OpenFlow Providers &amp; Controller</title>
85 <packages>@internal-openflow</packages>
86 </group>
87 <group>
88 <title>NetConf Providers</title>
89 <packages>@internal-netconf</packages>
90 </group>
91 <group>
92 <title>OVSDB Providers</title>
93 <packages>@internal-ovsdb</packages>
94 </group>
95 <group>
96 <title>PCEP Providers</title>
97 <packages>@internal-pcep</packages>
98 </group>
99 <group>
Thomas Vachuskae3786602015-10-27 17:49:03 -0700100 <title>BGP-LS Providers</title>
101 <packages>@internal-bgpls</packages>
102 </group>
103 <group>
Thomas Vachuskaf906fcf2015-08-31 13:33:07 -0700104 <title>Other Providers</title>
105 <packages>@internal-providers</packages>
106 </group>
107 <group>
108 <title>Built-in Device Drivers</title>
109 <packages>@internal-drivers</packages>
110 </group>
111 <group>
112 <title>Utilities</title>
113 <packages>@utils</packages>
114 </group>
115 <group>
116 <title>GUI, REST &amp; Command-Line</title>
117 <packages>@internal-gui-rest-cli</packages>
118 </group>
119 <group>
120 <title>Builtin Applications</title>
121 <packages>@internal-apps</packages>
122 </group>
123 <group>
andreafaa2c4b2015-11-16 13:48:39 -0800124 <title>Test Instrumentation &amp; Applications
125 </title>
Thomas Vachuskaf906fcf2015-08-31 13:33:07 -0700126 <packages>@internal-test-apps</packages>
127 </group>
128 </groups>
andreafaa2c4b2015-11-16 13:48:39 -0800129 <tags>
130 <tag>
131 <name>rsModel</name>
132 <placement>m</placement>
133 <head>Json model for REST api:</head>
134 </tag>
135 </tags>
Thomas Vachuskaf906fcf2015-08-31 13:33:07 -0700136 </configuration>
137 </plugin>
138 </plugins>
139 </build>
140
141</project>