Thomas Vachuska | f906fcf | 2015-08-31 13:33:07 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Foundation |
Thomas Vachuska | f906fcf | 2015-08-31 13:33:07 -0700 | [diff] [blame] | 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> |
ONOS Jenkins User | 1851199 | 2018-06-15 16:30:38 +0000 | [diff] [blame] | 29 | <version>1.13.2-SNAPSHOT</version> |
Thomas Vachuska | f906fcf | 2015-08-31 13:33:07 -0700 | [diff] [blame] | 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> |
Thomas Vachuska | f906fcf | 2015-08-31 13:33:07 -0700 | [diff] [blame] | 49 | <configuration> |
| 50 | <show>package</show> |
| 51 | <docfilessubdirs>true</docfilessubdirs> |
ONOS Jenkins User | 1851199 | 2018-06-15 16:30:38 +0000 | [diff] [blame] | 52 | <doctitle>ONOS Java API (1.13.2-SNAPSHOT)</doctitle> |
HIGUCHI Yuta | 15653fd | 2015-11-09 11:05:09 -0800 | [diff] [blame] | 53 | <excludePackageNames>@internal-excludes</excludePackageNames> |
| 54 | <sourceFileExcludes> |
| 55 | <sourceFileExclude>**/generated-sources/**</sourceFileExclude> |
| 56 | </sourceFileExcludes> |
| 57 | |
Thomas Vachuska | f906fcf | 2015-08-31 13:33:07 -0700 | [diff] [blame] | 58 | <groups> |
| 59 | <group> |
| 60 | <title>Network Model & Services</title> |
| 61 | <packages>@internal-apis</packages> |
| 62 | </group> |
| 63 | <group> |
andrea | faa2c4b | 2015-11-16 13:48:39 -0800 | [diff] [blame] | 64 | <title>Incubator for Network Model & Services |
| 65 | </title> |
Thomas Vachuska | f906fcf | 2015-08-31 13:33:07 -0700 | [diff] [blame] | 66 | <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 Vachuska | 84e09fb | 2016-02-17 10:57:05 -0800 | [diff] [blame] | 77 | <title>Incubator for Core Subsystems & Distributed Stores |
andrea | faa2c4b | 2015-11-16 13:48:39 -0800 | [diff] [blame] | 78 | </title> |
Thomas Vachuska | f906fcf | 2015-08-31 13:33:07 -0700 | [diff] [blame] | 79 | <packages>@internal-incubator</packages> |
| 80 | </group> |
| 81 | <group> |
Thomas Vachuska | f906fcf | 2015-08-31 13:33:07 -0700 | [diff] [blame] | 82 | <title>Utilities</title> |
| 83 | <packages>@utils</packages> |
| 84 | </group> |
| 85 | <group> |
| 86 | <title>GUI, REST & 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> |
andrea | faa2c4b | 2015-11-16 13:48:39 -0800 | [diff] [blame] | 94 | <title>Test Instrumentation & Applications |
| 95 | </title> |
Thomas Vachuska | f906fcf | 2015-08-31 13:33:07 -0700 | [diff] [blame] | 96 | <packages>@internal-test-apps</packages> |
| 97 | </group> |
Thomas Vachuska | 84e09fb | 2016-02-17 10:57:05 -0800 | [diff] [blame] | 98 | <group> |
| 99 | <title>OpenFlow Providers & Controller</title> |
| 100 | <packages>@internal-openflow</packages> |
| 101 | </group> |
| 102 | <group> |
| 103 | <title>NetConf Protocol & Providers</title> |
| 104 | <packages>@internal-netconf</packages> |
| 105 | </group> |
| 106 | <group> |
| 107 | <title>OVSDB Protocol & Providers</title> |
| 108 | <packages>@internal-ovsdb</packages> |
| 109 | </group> |
| 110 | <group> |
| 111 | <title>PCEP Protocol & Providers</title> |
| 112 | <packages>@internal-pcep</packages> |
| 113 | </group> |
| 114 | <group> |
| 115 | <title>BGP-LS Protocol & Providers</title> |
| 116 | <packages>@internal-bgpls</packages> |
| 117 | </group> |
| 118 | <group> |
| 119 | <title>OSPF Protocol & Providers</title> |
| 120 | <packages>@internal-ospf</packages> |
| 121 | </group> |
| 122 | <group> |
Thomas Vachuska | f0f8e9b | 2016-08-09 16:22:03 -0700 | [diff] [blame] | 123 | <title>ISIS Protocol & Providers</title> |
| 124 | <packages>@internal-isis</packages> |
| 125 | </group> |
| 126 | <group> |
| 127 | <title>LISP Protocol & Providers</title> |
| 128 | <packages>@internal-lisp</packages> |
| 129 | </group> |
| 130 | <group> |
| 131 | <title>SNMP Protocol & Providers</title> |
| 132 | <packages>@internal-snmp</packages> |
| 133 | </group> |
| 134 | <group> |
Thomas Vachuska | 84e09fb | 2016-02-17 10:57:05 -0800 | [diff] [blame] | 135 | <title>REST Protocol & Providers</title> |
| 136 | <packages>@internal-restsb</packages> |
| 137 | </group> |
| 138 | <group> |
| 139 | <title>Other Providers</title> |
| 140 | <packages>@internal-providers</packages> |
| 141 | </group> |
| 142 | <group> |
| 143 | <title>Device Drivers</title> |
| 144 | <packages>@internal-drivers</packages> |
| 145 | </group> |
Thomas Vachuska | f906fcf | 2015-08-31 13:33:07 -0700 | [diff] [blame] | 146 | </groups> |
andrea | faa2c4b | 2015-11-16 13:48:39 -0800 | [diff] [blame] | 147 | <tags> |
| 148 | <tag> |
Andrea Campanella | 10c4adc | 2015-12-03 15:27:54 -0800 | [diff] [blame] | 149 | <name>onos.rsModel</name> |
andrea | faa2c4b | 2015-11-16 13:48:39 -0800 | [diff] [blame] | 150 | <placement>m</placement> |
| 151 | <head>Json model for REST api:</head> |
| 152 | </tag> |
| 153 | </tags> |
Thomas Vachuska | f906fcf | 2015-08-31 13:33:07 -0700 | [diff] [blame] | 154 | </configuration> |
| 155 | </plugin> |
| 156 | </plugins> |
| 157 | </build> |
| 158 | |
| 159 | </project> |