blob: 08f447df882e780afc2165ba6cfb0c2ec6bf4021 [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>
27 <groupId>org.onlab.onos</groupId>
28 <artifactId>onos</artifactId>
29 <version>1.0.0-SNAPSHOT</version>
30 <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
42 <url>http://onlab.us/</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.1</version>
50 <configuration>
Thomas Vachuska7b652ad2014-10-30 14:10:51 -070051 <additionalparam>-Xdoclint:none</additionalparam>
Thomas Vachuskaabfe8d32014-10-23 15:59:32 -070052 <show>package</show>
Thomas Vachuska221db522014-10-23 17:52:44 -070053 <excludePackageNames>org.onlab.thirdparty:*.impl:*.impl.*:org.onlab.onos.provider.*:org.onlab.onos.gui:org.onlab.onos.rest:org.onlab.onos.cli*:org.onlab.onos.tvue:org.onlab.onos.foo:org.onlab.onos.mobility:org.onlab.onos.proxyarp:org.onlab.onos.fwd:org.onlab.onos.ifwd:org.onlab.onos.optical:org.onlab.onos.config:org.onlab.onos.calendar:org.onlab.onos.sdnip*:org.onlab.onos.metrics:org.onlab.onos.store.*:org.onlab.onos.openflow.*</excludePackageNames>
Thomas Vachuskaabfe8d32014-10-23 15:59:32 -070054 <docfilessubdirs>true</docfilessubdirs>
55 <doctitle>ONOS Java API</doctitle>
56 <groups>
57 <group>
58 <title>Network Model &amp; Services</title>
59 <packages>
60 org.onlab.onos:org.onlab.onos.*
61 </packages>
62 </group>
63 <group>
64 <title>Utilities</title>
65 <packages>
66 org.onlab.*
67 </packages>
68 </group>
69 </groups>
70 </configuration>
71 </plugin>
72 </plugins>
73 </build>
74
75</project>