Skip to content

Commit

Permalink
chore: add Doclava to remove @hidden method from javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
qii authored and duansishu committed Jul 30, 2019
1 parent ddde62a commit b87bff8
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions library/scene/build.gradle
Expand Up @@ -21,4 +21,12 @@ task javadoc(type: Javadoc) {
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
destinationDir = file("../javadoc/scene/")
failOnError false
title = null

options {
doclet = "com.google.doclava.Doclava"
docletpath(new File(project.rootDir, "tools/doclava-1.0.6.jar"))
locale "en_US"
encoding "UTF-8"
}
}
8 changes: 8 additions & 0 deletions library/scene_ui/build.gradle
Expand Up @@ -21,4 +21,12 @@ task javadoc(type: Javadoc) {
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
destinationDir = file("../javadoc/scene_ui/")
failOnError false
title = null

options {
doclet = "com.google.doclava.Doclava"
docletpath(new File(project.rootDir, "tools/doclava-1.0.6.jar"))
locale "en_US"
encoding "UTF-8"
}
}
Binary file added tools/doclava-1.0.6.jar
Binary file not shown.

0 comments on commit b87bff8

Please sign in to comment.