Repository: groovy Updated Branches: refs/heads/GROOVY_2_4_X 00af138c0 -> 6e8ac9d4b
GROOVY-8494: Calling Stream.of from groovy class in JDK 9 fails (fix for jdk6) Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/330d590a Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/330d590a Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/330d590a Branch: refs/heads/GROOVY_2_4_X Commit: 330d590aa145f240cb7a590e9eb7bec4087c1f65 Parents: 00af138 Author: paulk <[email protected]> Authored: Fri Mar 23 09:27:05 2018 +1000 Committer: paulk <[email protected]> Committed: Fri Mar 23 09:27:05 2018 +1000 ---------------------------------------------------------------------- build.gradle | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/330d590a/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index a1ac1df..834cba0 100644 --- a/build.gradle +++ b/build.gradle @@ -261,6 +261,7 @@ sourceSets { if (!JavaVersion.current().isJava7Compatible()) { exclude '**/indy/*' exclude '**/v7/*' + exclude '**/v8/*' exclude '**/vm7/*' } } @@ -272,6 +273,7 @@ sourceSets { if (!JavaVersion.current().isJava7Compatible()) { exclude '**/indy/*' exclude '**/v7/*' + exclude '**/v8/*' exclude '**/vm7/*' } }
