groovy icon indicating copy to clipboard operation
groovy copied to clipboard

Apache Groovy: A powerful multi-faceted programming language for the JVM platform

Results 31 groovy issues
Sort by recently updated
recently updated
newest added

As described in GROOVY-10278, select the nearest target bytecode version. As described on the mailing list, set minimum Java to 11 for Groovy 5. This sets the stage for using...

Support multi-assign for `Stream` and `Iterator`. Improve efficiency of multi-assign for types that do not support direct indexing like `Set`. Translate "def (one,two) = rhs" into (pseudo-code): ```groovy def one,...

Here are some changes to support running Groovy 3 builds with Java 16+ for purposes of evaluating issue reports. `upload.gradle` still needs to be migrated to use the `maven-publish` plugin.

This is a replacement for PR #1591 which was accidentally closed on the occasion of my attempting to move the work into a branch of my fork, rather than master,...

https://issues.apache.org/jira/browse/GROOVY-9017 Instead of making keywords for and, or and not, we added a Boolean not() method in DefaultGroovyMethods to get most of what was wanted. DGM already had a or()...

fix GROOVY-9999,GROOVY-8488, in general, make literal such as "4.0" could be use in double param method such as "Math.sqrt(double a)".