Created
October 7, 2014 08:25
-
-
Save fire/8ef1b78481586fddb793 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
apply plugin: 'java' | |
task allJavadoc(type: Javadoc) { | |
group 'Documentation' | |
description 'Generates aggregated Javadoc API documentation for the main source code of all projects.' | |
source = "" | |
classpath = "" | |
destinationDir file("$project.buildDir/docs/javadoc/") | |
} | |
subprojects { | |
afterEvaluate { | |
plugins.withType(JavaPlugin).whenPluginAdded { | |
} | |
} | |
} |
darylteo
commented
Oct 7, 2014
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment