Repository: zest-qi4j Updated Branches: refs/heads/develop f91e712d7 -> 2626287c7
ZEST-25 Fix wrong folder for javadocs in binary distribution Links in the included website were broken. Project: http://git-wip-us.apache.org/repos/asf/zest-qi4j/repo Commit: http://git-wip-us.apache.org/repos/asf/zest-qi4j/commit/2626287c Tree: http://git-wip-us.apache.org/repos/asf/zest-qi4j/tree/2626287c Diff: http://git-wip-us.apache.org/repos/asf/zest-qi4j/diff/2626287c Branch: refs/heads/develop Commit: 2626287c7d2f3637888bc9f2e45bee39d336d750 Parents: f91e712 Author: Paul Merlin <[email protected]> Authored: Wed Jul 22 20:08:12 2015 +0200 Committer: Paul Merlin <[email protected]> Committed: Wed Jul 22 20:08:12 2015 +0200 ---------------------------------------------------------------------- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/zest-qi4j/blob/2626287c/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index 4125350..eb89fc1 100644 --- a/build.gradle +++ b/build.gradle @@ -541,7 +541,7 @@ task javadocs( type: Javadoc ) { source apiSources.collect { project -> project.sourceSets.main.allJava } - destinationDir = new File( "" + buildDir + '/docs/javadoc' ) + destinationDir = project.file( "$project.docsDir/javadocs" ) // Might need a classpath classpath = files( apiSources.collect { project -> project.sourceSets.main.compileClasspath
