Skip to content

Commit 1425513

Browse files
committed
Merge pull request #738 from mziccard/javadoc-group-packages
Use groups to separate packages in javadoc's index
2 parents 0d38c67 + 24a712a commit 1425513

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/*
2+
* Copyright 2016 Google Inc. All Rights Reserved.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
/**
18+
* Core classes for the {@code gcloud-java} library.
19+
*/
20+
package com.google.gcloud;

pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,24 @@
389389
<show>protected</show>
390390
<nohelp>true</nohelp>
391391
<outputDirectory>${project.build.directory}/javadoc</outputDirectory>
392+
<groups>
393+
<group>
394+
<title>API packages</title>
395+
<packages>com.google.gcloud*</packages>
396+
</group>
397+
<group>
398+
<title>Test helpers packages</title>
399+
<packages>com.google.gcloud.bigquery.testing:com.google.gcloud.datastore.testing:com.google.gcloud.resourcemanager.testing:com.google.gcloud.storage.testing</packages>
400+
</group>
401+
<group>
402+
<title>Example packages</title>
403+
<packages>com.google.gcloud.examples*</packages>
404+
</group>
405+
<group>
406+
<title>SPI packages</title>
407+
<packages>com.google.gcloud.spi:com.google.gcloud.bigquery.spi:com.google.gcloud.datastore.spi:com.google.gcloud.resourcemanager.spi:com.google.gcloud.storage.spi</packages>
408+
</group>
409+
</groups>
392410
</configuration>
393411
</plugin>
394412
<plugin>

0 commit comments

Comments
 (0)