You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by jk...@apache.org on 2015/09/16 10:09:24 UTC

tapestry-5 git commit: use task name rather than task reference

Repository: tapestry-5
Updated Branches:
  refs/heads/master 4162a1a9a -> 7adbf6085


use task name rather than task reference


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/7adbf608
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/7adbf608
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/7adbf608

Branch: refs/heads/master
Commit: 7adbf6085759424d1226777d9129b8851f6c4aee
Parents: 4162a1a
Author: Jochen Kemnade <jo...@eddyson.de>
Authored: Wed Sep 16 10:07:39 2015 +0200
Committer: Jochen Kemnade <jo...@eddyson.de>
Committed: Wed Sep 16 10:07:39 2015 +0200

----------------------------------------------------------------------
 build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/7adbf608/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 3a6e15e..2cef999 100755
--- a/build.gradle
+++ b/build.gradle
@@ -422,7 +422,7 @@ task combinedJacocoReport(type:JacocoReport){
 }
 
 task continuousIntegration {
-    dependsOn subprojects.build, testWithPrototype, aggregateJavadoc, combinedJacocoReport
+    dependsOn subprojects.build, 'tapestry-core:testWithPrototype', aggregateJavadoc, combinedJacocoReport
     description "Task executed on Jenkins CI server after SVN commits"
 }