You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@polygene.apache.org by pa...@apache.org on 2015/07/28 14:55:28 UTC

[31/50] zest-java git commit: ZEST-25 Fix wrong folder for javadocs in binary distribution

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-java/repo
Commit: http://git-wip-us.apache.org/repos/asf/zest-java/commit/2626287c
Tree: http://git-wip-us.apache.org/repos/asf/zest-java/tree/2626287c
Diff: http://git-wip-us.apache.org/repos/asf/zest-java/diff/2626287c

Branch: refs/heads/master
Commit: 2626287c7d2f3637888bc9f2e45bee39d336d750
Parents: f91e712
Author: Paul Merlin <pa...@apache.org>
Authored: Wed Jul 22 20:08:12 2015 +0200
Committer: Paul Merlin <pa...@apache.org>
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-java/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