Skip to content

Commit

Permalink
Added javadoc to gp-cli and gp-res-filter
Browse files Browse the repository at this point in the history
Creating javadoc for gp-cli and gp-resfilter because it's are
requirement for OSSRH hosting.
  • Loading branch information
Yoshito Umaoka committed Oct 31, 2016
1 parent ba54713 commit 82a7019
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 3 deletions.
5 changes: 5 additions & 0 deletions gp-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
<artifactId>maven-compiler-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import com.ibm.g11n.pipeline.client.ServiceException;

@Parameters(commandDescription = "Copies all bundle data to another service instance.")
public class CopyAllBundlesCmd extends BaseCmd {
class CopyAllBundlesCmd extends BaseCmd {
@Parameter(
names = { "--dest-url"},
description = "The destinaion service instance's URL",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* @author Yoshito Umaoka
*/
@Parameters(commandDescription = "Prints out active machine translation languages.")
public class ListMTLanguagesCmd extends BaseCmd {
class ListMTLanguagesCmd extends BaseCmd {

@Parameter(
names = {"-f", "--fromLanguage"},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*
* @author Yoshito Umaoka
*/
public class ResourceTypeConverter implements IStringConverter<ResourceType>{
class ResourceTypeConverter implements IStringConverter<ResourceType>{

@Override
public ResourceType convert(String type) {
Expand Down
6 changes: 6 additions & 0 deletions gp-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions gp-res-filter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 82a7019

Please sign in to comment.