blob: 03979774d1bfa17fbb2c07e39aea7de314534ebb [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'Connor880dc20d2015-12-16 22:53:14 -080029 <version>1.5.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'Connor880dc20d2015-12-16 22:53:14 -080052 <doctitle>ONOS Java API (1.5.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>
andreafaa2c4b2015-11-16 13:48:39 -080077 <title>Incubator for Core Subsystems &amp;
78 Distributed Stores
79 </title>
Thomas Vachuskaf906fcf2015-08-31 13:33:07 -070080 <packages>@internal-incubator</packages>
81 </group>
82 <group>
83 <title>OpenFlow Providers &amp; Controller</title>
84 <packages>@internal-openflow</packages>
85 </group>
86 <group>
87 <title>NetConf Providers</title>
88 <packages>@internal-netconf</packages>
89 </group>
90 <group>
91 <title>OVSDB Providers</title>
92 <packages>@internal-ovsdb</packages>
93 </group>
94 <group>
95 <title>PCEP Providers</title>
96 <packages>@internal-pcep</packages>
97 </group>
98 <group>
Thomas Vachuskae3786602015-10-27 17:49:03 -070099 <title>BGP-LS Providers</title>
100 <packages>@internal-bgpls</packages>
101 </group>
102 <group>
Thomas Vachuskaf906fcf2015-08-31 13:33:07 -0700103 <title>Other Providers</title>
104 <packages>@internal-providers</packages>
105 </group>
106 <group>
107 <title>Built-in Device Drivers</title>
108 <packages>@internal-drivers</packages>
109 </group>
110 <group>
111 <title>Utilities</title>
112 <packages>@utils</packages>
113 </group>
114 <group>
115 <title>GUI, REST &amp; Command-Line</title>
116 <packages>@internal-gui-rest-cli</packages>
117 </group>
118 <group>
119 <title>Builtin Applications</title>
120 <packages>@internal-apps</packages>
121 </group>
122 <group>
andreafaa2c4b2015-11-16 13:48:39 -0800123 <title>Test Instrumentation &amp; Applications
124 </title>
Thomas Vachuskaf906fcf2015-08-31 13:33:07 -0700125 <packages>@internal-test-apps</packages>
126 </group>
127 </groups>
andreafaa2c4b2015-11-16 13:48:39 -0800128 <tags>
129 <tag>
Andrea Campanella10c4adc2015-12-03 15:27:54 -0800130 <name>onos.rsModel</name>
andreafaa2c4b2015-11-16 13:48:39 -0800131 <placement>m</placement>
132 <head>Json model for REST api:</head>
133 </tag>
134 </tags>
Thomas Vachuskaf906fcf2015-08-31 13:33:07 -0700135 </configuration>
136 </plugin>
137 </plugins>
138 </build>
139
140</project>