Skip to content

Commit

Permalink
Update Groovy to 2.5.18, 3.0.12, and 4.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
leonard84 committed Aug 20, 2022
1 parent 698d2aa commit 0836ee8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,20 @@ ext {
buildScan.tag "groovy-$variant"
if (variant == 2.5) {
groovyGroup = "org.codehaus.groovy"
groovyVersion = "2.5.17"
groovyVersion = "2.5.18"
minGroovyVersion = "2.5.0"
maxGroovyVersion = "2.9.99"
if(javaVersion >= 17) {
throw new InvalidUserDataException("Groovy $variant is not compatible with Java $javaVersion")
}
} else if (variant == 3.0) {
groovyGroup = "org.codehaus.groovy"
groovyVersion = "3.0.11"
groovyVersion = "3.0.12"
minGroovyVersion = "3.0.0"
maxGroovyVersion = "3.9.99"
} else if (variant == 4.0) {
groovyGroup = "org.apache.groovy"
groovyVersion = "4.0.2"
groovyVersion = "4.0.4"
minGroovyVersion = "4.0.0"
maxGroovyVersion = "4.9.99"
} else {
Expand Down

0 comments on commit 0836ee8

Please sign in to comment.