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> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 27 | <groupId>org.onosproject</groupId> |
Thomas Vachuska | abfe8d3 | 2014-10-23 15:59:32 -0700 | [diff] [blame] | 28 | <artifactId>onos</artifactId> |
Brian O'Connor | f967ad6 | 2015-09-18 15:19:54 -0700 | [diff] [blame] | 29 | <version>1.4.0-SNAPSHOT</version> |
Thomas Vachuska | abfe8d3 | 2014-10-23 15:59:32 -0700 | [diff] [blame] | 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 | |
Brian O'Connor | 3439c10 | 2014-12-03 01:02:03 -0800 | [diff] [blame] | 42 | <url>http://onosproject.org/</url> |
Thomas Vachuska | abfe8d3 | 2014-10-23 15:59:32 -0700 | [diff] [blame] | 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> |
| 51 | <show>package</show> |
andrea | faa2c4b | 2015-11-16 13:48:39 -0800 | [diff] [blame] | 52 | <excludePackageNames>@external-excludes |
| 53 | </excludePackageNames> |
Thomas Vachuska | abfe8d3 | 2014-10-23 15:59:32 -0700 | [diff] [blame] | 54 | <docfilessubdirs>true</docfilessubdirs> |
Brian O'Connor | f967ad6 | 2015-09-18 15:19:54 -0700 | [diff] [blame] | 55 | <doctitle>ONOS Java API (1.4.0-SNAPSHOT)</doctitle> |
Thomas Vachuska | abfe8d3 | 2014-10-23 15:59:32 -0700 | [diff] [blame] | 56 | <groups> |
| 57 | <group> |
| 58 | <title>Network Model & Services</title> |
Thomas Vachuska | f906fcf | 2015-08-31 13:33:07 -0700 | [diff] [blame] | 59 | <packages>@external-apis</packages> |
Thomas Vachuska | abfe8d3 | 2014-10-23 15:59:32 -0700 | [diff] [blame] | 60 | </group> |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 61 | <group> |
andrea | faa2c4b | 2015-11-16 13:48:39 -0800 | [diff] [blame] | 62 | <title>Incubator for Network Model & Services |
| 63 | </title> |
Thomas Vachuska | f906fcf | 2015-08-31 13:33:07 -0700 | [diff] [blame] | 64 | <packages>@external-incubator-apis</packages> |
| 65 | </group> |
| 66 | <group> |
| 67 | <title>Utilities</title> |
| 68 | <packages>@utils</packages> |
Thomas Vachuska | d3858e4 | 2015-04-22 22:05:49 -0700 | [diff] [blame] | 69 | </group> |
Thomas Vachuska | abfe8d3 | 2014-10-23 15:59:32 -0700 | [diff] [blame] | 70 | </groups> |
andrea | faa2c4b | 2015-11-16 13:48:39 -0800 | [diff] [blame] | 71 | <tags> |
| 72 | <tag> |
| 73 | <name>rsModel</name> |
| 74 | <placement>m</placement> |
| 75 | <head>Json model for REST api:</head> |
| 76 | </tag> |
| 77 | </tags> |
Thomas Vachuska | abfe8d3 | 2014-10-23 15:59:32 -0700 | [diff] [blame] | 78 | </configuration> |
| 79 | </plugin> |
| 80 | </plugins> |
| 81 | </build> |
| 82 | |
| 83 | </project> |