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/13 12:23:56 UTC

tapestry-5 git commit: TAP5-2451: exclude tests that need Java 7

Repository: tapestry-5
Updated Branches:
  refs/heads/master eb29cdd2d -> ef4ae2c3b


TAP5-2451: exclude tests that need Java 7


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

Branch: refs/heads/master
Commit: ef4ae2c3b2985ecfc68f936bb5b1e33dae63a77d
Parents: eb29cdd
Author: Jochen Kemnade <jo...@eddyson.de>
Authored: Fri Mar 13 12:23:08 2015 +0100
Committer: Jochen Kemnade <jo...@eddyson.de>
Committed: Fri Mar 13 12:23:08 2015 +0100

----------------------------------------------------------------------
 tapestry-ioc-jcache/build.gradle | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/ef4ae2c3/tapestry-ioc-jcache/build.gradle
----------------------------------------------------------------------
diff --git a/tapestry-ioc-jcache/build.gradle b/tapestry-ioc-jcache/build.gradle
index 5be97cd..5a06738 100644
--- a/tapestry-ioc-jcache/build.gradle
+++ b/tapestry-ioc-jcache/build.gradle
@@ -27,4 +27,9 @@ jar {
 
 test {
   useJUnit()
+
+  // those tests do not work with JDK 6 (java.lang.UnsupportedClassVersionError)
+  exclude '**/InterceptionUsingDefaultCacheNameTest.class',
+   '**/InterceptionCacheNameOnEachMethodTest.class',
+   '**/InterceptionUsingCacheConfigTest.class'
 }