blob: 9d0e0159298081ef71bfc9f4302efb30f483602e [file] [log] [blame]
Thomas Vachuskaf906fcf2015-08-31 13:33:07 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2015-present Open Networking Laboratory
Thomas Vachuskaf906fcf2015-08-31 13:33:07 -07004 ~
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'Connor955c3162016-03-10 15:27:19 -080029 <version>1.6.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>
Thomas Vachuskaf906fcf2015-08-31 13:33:07 -070049 <configuration>
50 <show>package</show>
51 <docfilessubdirs>true</docfilessubdirs>
Brian O'Connor955c3162016-03-10 15:27:19 -080052 <doctitle>ONOS Java API (1.6.0-SNAPSHOT)</doctitle>
HIGUCHI Yuta15653fd2015-11-09 11:05:09 -080053 <excludePackageNames>@internal-excludes</excludePackageNames>
54 <sourceFileExcludes>
55 <sourceFileExclude>**/generated-sources/**</sourceFileExclude>
56 </sourceFileExcludes>
57
Thomas Vachuskaf906fcf2015-08-31 13:33:07 -070058 <groups>
59 <group>
60 <title>Network Model &amp; Services</title>
61 <packages>@internal-apis</packages>
62 </group>
63 <group>
andreafaa2c4b2015-11-16 13:48:39 -080064 <title>Incubator for Network Model &amp; Services
65 </title>
Thomas Vachuskaf906fcf2015-08-31 13:33:07 -070066 <packages>@internal-incubator-apis</packages>
67 </group>
68 <group>
69 <title>Core Subsystems</title>
70 <packages>@internal-core</packages>
71 </group>
72 <group>
73 <title>Distributed Stores</title>
74 <packages>@internal-stores</packages>
75 </group>
76 <group>
Thomas Vachuska84e09fb2016-02-17 10:57:05 -080077 <title>Incubator for Core Subsystems &amp; Distributed Stores
andreafaa2c4b2015-11-16 13:48:39 -080078 </title>
Thomas Vachuskaf906fcf2015-08-31 13:33:07 -070079 <packages>@internal-incubator</packages>
80 </group>
81 <group>
Thomas Vachuskaf906fcf2015-08-31 13:33:07 -070082 <title>Utilities</title>
83 <packages>@utils</packages>
84 </group>
85 <group>
86 <title>GUI, REST &amp; Command-Line</title>
87 <packages>@internal-gui-rest-cli</packages>
88 </group>
89 <group>
90 <title>Builtin Applications</title>
91 <packages>@internal-apps</packages>
92 </group>
93 <group>
andreafaa2c4b2015-11-16 13:48:39 -080094 <title>Test Instrumentation &amp; Applications
95 </title>
Thomas Vachuskaf906fcf2015-08-31 13:33:07 -070096 <packages>@internal-test-apps</packages>
97 </group>
Thomas Vachuska84e09fb2016-02-17 10:57:05 -080098 <group>
99 <title>OpenFlow Providers &amp; Controller</title>
100 <packages>@internal-openflow</packages>
101 </group>
102 <group>
103 <title>NetConf Protocol &amp; Providers</title>
104 <packages>@internal-netconf</packages>
105 </group>
106 <group>
107 <title>OVSDB Protocol &amp; Providers</title>
108 <packages>@internal-ovsdb</packages>
109 </group>
110 <group>
111 <title>PCEP Protocol &amp; Providers</title>
112 <packages>@internal-pcep</packages>
113 </group>
114 <group>
115 <title>BGP-LS Protocol &amp; Providers</title>
116 <packages>@internal-bgpls</packages>
117 </group>
118 <group>
119 <title>OSPF Protocol &amp; Providers</title>
120 <packages>@internal-ospf</packages>
121 </group>
122 <group>
123 <title>REST Protocol &amp; Providers</title>
124 <packages>@internal-restsb</packages>
125 </group>
126 <group>
127 <title>Other Providers</title>
128 <packages>@internal-providers</packages>
129 </group>
130 <group>
131 <title>Device Drivers</title>
132 <packages>@internal-drivers</packages>
133 </group>
Thomas Vachuskaf906fcf2015-08-31 13:33:07 -0700134 </groups>
andreafaa2c4b2015-11-16 13:48:39 -0800135 <tags>
136 <tag>
Andrea Campanella10c4adc2015-12-03 15:27:54 -0800137 <name>onos.rsModel</name>
andreafaa2c4b2015-11-16 13:48:39 -0800138 <placement>m</placement>
139 <head>Json model for REST api:</head>
140 </tag>
141 </tags>
Thomas Vachuskaf906fcf2015-08-31 13:33:07 -0700142 </configuration>
143 </plugin>
144 </plugins>
145 </build>
146
147</project>