Thomas Vachuska | abfe8d3 | 2014-10-23 15:59:32 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 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 | --> |
Thomas Vachuska | abfe8d3 | 2014-10-23 15:59:32 -0700 | [diff] [blame] | 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.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</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 Vachuska | abfe8d3 | 2014-10-23 15:59:32 -0700 | [diff] [blame] | 51 | <show>package</show> |
| 52 | <docfilessubdirs>true</docfilessubdirs> |
| 53 | <doctitle>ONOS Java API</doctitle> |
| 54 | <groups> |
| 55 | <group> |
| 56 | <title>Network Model & Services</title> |
| 57 | <packages> |
| 58 | org.onlab.onos:org.onlab.onos.* |
| 59 | </packages> |
| 60 | </group> |
| 61 | <group> |
| 62 | <title>Core Subsystems</title> |
| 63 | <packages> |
| 64 | org.onlab.onos.impl:org.onlab.onos.cluster.impl:org.onlab.onos.net.device.impl:org.onlab.onos.net.link.impl:org.onlab.onos.net.host.impl:org.onlab.onos.net.topology.impl:org.onlab.onos.net.packet.impl:org.onlab.onos.net.flow.impl:org.onlab.onos.store.trivial.*:org.onlab.onos.net.*.impl:org.onlab.onos.event.impl:org.onlab.onos.store.*:org.onlab.onos.net.intent.impl:org.onlab.onos.net.proxyarp.impl:org.onlab.onos.mastership.impl:org.onlab.onos.json:org.onlab.onos.json.*:org.onlab.onos.provider.host.impl:org.onlab.onos.provider.lldp.impl:org.onlab.onos.net.statistic.impl |
| 65 | </packages> |
| 66 | </group> |
| 67 | <group> |
| 68 | <title>OpenFlow Providers & Controller |
| 69 | </title> |
| 70 | <packages> |
| 71 | org.onlab.onos.provider.of.*:org.onlab.onos.openflow.* |
| 72 | </packages> |
| 73 | </group> |
| 74 | <group> |
| 75 | <title>Utilities</title> |
| 76 | <packages> |
| 77 | org.onlab.* |
| 78 | </packages> |
| 79 | </group> |
| 80 | <group> |
| 81 | <title>GUI, REST & Command-Line</title> |
| 82 | <packages> |
| 83 | org.onlab.onos.gui:org.onlab.onos.rest:org.onlab.onos.cli:org.onlab.onos.gui.*:org.onlab.onos.rest.*:org.onlab.onos.cli.* |
| 84 | </packages> |
| 85 | </group> |
| 86 | <group> |
| 87 | <title>Sample Applications</title> |
| 88 | <packages> |
Thomas Vachuska | b14c77a | 2014-11-04 18:08:01 -0800 | [diff] [blame] | 89 | org.onlab.onos.tvue:org.onlab.onos.fwd:org.onlab.onos.ifwd:org.onlab.onos.mobility:org.onlab.onos.proxyarp:org.onlab.onos.foo:org.onlab.onos.calendar:org.onlab.onos.optical.*:org.onlab.onos.sdnip:org.onlab.onos.sdnip.*:org.onlab.onos.config |
| 90 | </packages> |
| 91 | </group> |
| 92 | <group> |
| 93 | <title>Test Instrumentation</title> |
| 94 | <packages> |
| 95 | org.onlab.onos.metrics.*:org.onlab.onos.oecfg |
Thomas Vachuska | abfe8d3 | 2014-10-23 15:59:32 -0700 | [diff] [blame] | 96 | </packages> |
| 97 | </group> |
| 98 | </groups> |
| 99 | <excludePackageNames>org.onlab.thirdparty |
| 100 | </excludePackageNames> |
| 101 | </configuration> |
| 102 | </plugin> |
| 103 | </plugins> |
| 104 | </build> |
| 105 | |
| 106 | </project> |