blob: bcb1215df1f8fc12fb55e1e3bf68ce2b3191791a [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>
29 <version>1.3.0-SNAPSHOT</version>
30 <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>
53 <doctitle>ONOS Java API (1.3.0-SNAPSHOT)</doctitle>
54 <excludePackageNames>@internal-excludes</excludePackageNames>
55 <groups>
56 <group>
57 <title>Network Model &amp; Services</title>
58 <packages>@internal-apis</packages>
59 </group>
60 <group>
61 <title>Incubator for Network Model &amp; Services</title>
62 <packages>@internal-incubator-apis</packages>
63 </group>
64 <group>
65 <title>Core Subsystems</title>
66 <packages>@internal-core</packages>
67 </group>
68 <group>
69 <title>Distributed Stores</title>
70 <packages>@internal-stores</packages>
71 </group>
72 <group>
73 <title>Incubator for Core Subsystems &amp; Distributed Stores</title>
74 <packages>@internal-incubator</packages>
75 </group>
76 <group>
77 <title>OpenFlow Providers &amp; Controller</title>
78 <packages>@internal-openflow</packages>
79 </group>
80 <group>
81 <title>NetConf Providers</title>
82 <packages>@internal-netconf</packages>
83 </group>
84 <group>
85 <title>OVSDB Providers</title>
86 <packages>@internal-ovsdb</packages>
87 </group>
88 <group>
89 <title>PCEP Providers</title>
90 <packages>@internal-pcep</packages>
91 </group>
92 <group>
93 <title>Other Providers</title>
94 <packages>@internal-providers</packages>
95 </group>
96 <group>
97 <title>Built-in Device Drivers</title>
98 <packages>@internal-drivers</packages>
99 </group>
100 <group>
101 <title>Utilities</title>
102 <packages>@utils</packages>
103 </group>
104 <group>
105 <title>GUI, REST &amp; Command-Line</title>
106 <packages>@internal-gui-rest-cli</packages>
107 </group>
108 <group>
109 <title>Builtin Applications</title>
110 <packages>@internal-apps</packages>
111 </group>
112 <group>
113 <title>Test Instrumentation &amp; Applications</title>
114 <packages>@internal-test-apps</packages>
115 </group>
116 </groups>
117 </configuration>
118 </plugin>
119 </plugins>
120 </build>
121
122</project>