You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2020/02/11 22:14:56 UTC

[groovy] branch master updated: fix build script (fixes GROOVY-9390: groovysh 3.0.0 not working with jdk 11.0.6)

This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/master by this push:
     new a2e9c8a  fix build script (fixes GROOVY-9390: groovysh 3.0.0 not working with jdk 11.0.6)
a2e9c8a is described below

commit a2e9c8aefea951f750c671898e33d592ee444cde
Author: Paul King <pa...@asert.com.au>
AuthorDate: Wed Feb 12 08:10:11 2020 +1000

    fix build script (fixes GROOVY-9390: groovysh 3.0.0 not working with jdk 11.0.6)
---
 build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.gradle b/build.gradle
index 3ef1050..7ff2e23 100644
--- a/build.gradle
+++ b/build.gradle
@@ -410,7 +410,7 @@ compileTestGroovy {
 
 task checkCompatibility {
     doLast {
-        assert JavaVersion.current().java8Compatible
+        assert JavaVersion.current().java9Compatible
     }
 }