I am pretty much new to java and groovy. I have installed groovy 3.0 on my windows 10 laptop (64 bit) and when tried to run groovy getting following warning:
&g
It is more than a 'warning' for me: I cannot get Groovy scripts to run (on macOS) with the current JVM 9, much less 10. The workaround (until a compatible version of Groovy is available) is to install jenv and an earlier version of Java, so you can switch when needed.
In my case it was because I was using JUNIT 5 with groovy but the latest supported I found is JUNIT 4.13
Use the Java 8, however, if the java version must be 9 or >, you need to update the groovy version too.
I was running groovy 2.2.1 and it only works until java version 8
To disable the warnings you can pass --add-opens
to the JVM, see details here. Unfortunately Groovy requires a lot of modules/packages to be opened, see this (currently reverted) commit (source). Just tested these with AdoptOpenJDK 11.
Although my environment is Linux, after struggling some days to setup Groovy on Grails environment I feel like I know the answer: use JDK 8 for now. I was fiddling with JDK 9, and I thought it was too far behind so I tried JDK 11, which made things even worse, I got actual crashes. It seems like that Groovy / Grails is heavily lagging behind in terms of Java version compatibility.
Once the new Groovy will be released (said to be end of this year) then newer JDK can be used as well.
add groovy-version to your pom:
<groovy.version>3.0.4</groovy.version>