Created
June 21, 2018 14:27
-
-
Save mathieucarbou/58c1de3b8c4650e9b7591e59698c8bb4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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