Exclude Protected methods in gradle javadoc build

1.3k Views Asked by At

I have written few utility classes with protected and public methods in it. I want to exclude all the protected methods from javadocs when generated from Gradle.

in eclipse, we can do it by passing '-protected' parameter but it does not work in Gradle.

please let me know how can i do it in Gradle.

1

There are 1 best solutions below

0
On

Place the following snippet into your build.gradle file:

javadoc {
  options.memberLevel = JavadocMemberLevel.PUBLIC
}