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 2018/04/05 15:02:00 UTC

[2/2] groovy git commit: GROOVY-8529: InvocationWriter also needs fix for calling static interface methods (fix test target bytecode version)

GROOVY-8529: InvocationWriter also needs fix for calling static interface methods (fix test target bytecode version)


Project: http://git-wip-us.apache.org/repos/asf/groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/133a8264
Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/133a8264
Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/133a8264

Branch: refs/heads/GROOVY_2_6_X
Commit: 133a8264e3bc56188620d057fcd96bb423a88b2e
Parents: 4fcea5e
Author: Paul King <pa...@asert.com.au>
Authored: Fri Apr 6 00:58:59 2018 +1000
Committer: Paul King <pa...@asert.com.au>
Committed: Fri Apr 6 01:01:45 2018 +1000

----------------------------------------------------------------------
 subprojects/tests-vm8/build.gradle | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/groovy/blob/133a8264/subprojects/tests-vm8/build.gradle
----------------------------------------------------------------------
diff --git a/subprojects/tests-vm8/build.gradle b/subprojects/tests-vm8/build.gradle
index 82c9330..9569173 100644
--- a/subprojects/tests-vm8/build.gradle
+++ b/subprojects/tests-vm8/build.gradle
@@ -26,6 +26,11 @@ tasks.withType(JavaCompile) {
     targetCompatibility = 1.8
 }
 
+tasks.withType(GroovyCompile) {
+    sourceCompatibility = 1.8
+    targetCompatibility = 1.8
+}
+
 sourceSets {
     test {
         java {