Skip to content

Instantly share code, notes, and snippets.

@mathieucarbou
Created June 21, 2018 14:27
Show Gist options
  • Save mathieucarbou/58c1de3b8c4650e9b7591e59698c8bb4 to your computer and use it in GitHub Desktop.
Save mathieucarbou/58c1de3b8c4650e9b7591e59698c8bb4 to your computer and use it in GitHub Desktop.
// to put inside ~/.gradle/init.d/nojavadoc.gradle
allprojects {
afterEvaluate { project ->
if (project.rootDir.name in ['my-root-project-name']) {
tasks.withType(Javadoc) {
enabled = false
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment