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/03/17 10:47:56 UTC

[2/2] tapestry-5 git commit: add a testRuntime dependency on guice to fix a ClassNotFoundException when Groovy initializes our test classes

add a testRuntime dependency on guice to fix a ClassNotFoundException when Groovy initializes our test classes


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

Branch: refs/heads/master
Commit: da4dc29d698bcb9a375ebe34e48779281b1c2b78
Parents: 2f1c8ee
Author: Jochen Kemnade <jo...@eddyson.de>
Authored: Tue Mar 17 10:46:51 2015 +0100
Committer: Jochen Kemnade <jo...@eddyson.de>
Committed: Tue Mar 17 10:46:51 2015 +0100

----------------------------------------------------------------------
 tapestry-core/build.gradle | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/da4dc29d/tapestry-core/build.gradle
----------------------------------------------------------------------
diff --git a/tapestry-core/build.gradle b/tapestry-core/build.gradle
index 0654cbb..99b6e10 100644
--- a/tapestry-core/build.gradle
+++ b/tapestry-core/build.gradle
@@ -25,6 +25,8 @@ dependencies {
     compile "commons-codec:commons-codec:1.10"
 
     testRuntime "org.hsqldb:hsqldb:1.8.0.10"
+
+    testRuntime 'com.google.inject:guice:3.0'
 }
 
 task preprocessCoffeeScript(type: PreprocessCoffeeScript) {