Skip to content

Instantly share code, notes, and snippets.

@kpb
Last active June 3, 2020 15:52
Show Gist options
  • Save kpb/ea433d8ccddd79f4c835e403c7cf8011 to your computer and use it in GitHub Desktop.
Save kpb/ea433d8ccddd79f4c835e403c7cf8011 to your computer and use it in GitHub Desktop.
Sundry Gradle examples

Task to build a javadoc jar

task javadocJar(type: Jar, dependsOn: javadoc) {
  classifier = 'javadoc'
  from javadoc.destinationDir
}

Javadoc include private/protected/package access modifiers

javadoc {
  options.memberLevel = JavadocMemberLevel.PRIVATE
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment