Skip to content

Commit

Permalink
Merge pull request #738 from mziccard/javadoc-group-packages
Browse files Browse the repository at this point in the history
Use groups to separate packages in javadoc's index
  • Loading branch information
ajkannan committed Mar 11, 2016
2 parents 0d38c67 + 24a712a commit 1425513
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
20 changes: 20 additions & 0 deletions gcloud-java-core/src/main/java/com/google/gcloud/package-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/*
* Copyright 2016 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

/**
* Core classes for the {@code gcloud-java} library.
*/
package com.google.gcloud;
18 changes: 18 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,24 @@
<show>protected</show>
<nohelp>true</nohelp>
<outputDirectory>${project.build.directory}/javadoc</outputDirectory>
<groups>
<group>
<title>API packages</title>
<packages>com.google.gcloud*</packages>
</group>
<group>
<title>Test helpers packages</title>
<packages>com.google.gcloud.bigquery.testing:com.google.gcloud.datastore.testing:com.google.gcloud.resourcemanager.testing:com.google.gcloud.storage.testing</packages>
</group>
<group>
<title>Example packages</title>
<packages>com.google.gcloud.examples*</packages>
</group>
<group>
<title>SPI packages</title>
<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>
</group>
</groups>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 1425513

Please sign in to comment.