Build failed: Could not initialize class org.codehaus.groovy.runtime.InvokerHelper
See original GitHub issueHello,
so I tried to run the FXSampler as described in the readme.md by cloning it, checking out a branch (9.0.0 in my case) and running ./gradlew run. However, there is a Gradle exception saying: Could not initialize class org.codehaus.groovy.runtime.InvokerHelper
After a bit of googling I found out that you could change the gradle-wrapper.properties to pull Gradle 6.3 instead of 6.0.1, which indeed fixed this problem. However, now the build fails saying: Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
I have no idea why this is a problem since I am not even using Gradle 7.0.
Any help would be appreciated. Thanks!
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (1 by maintainers)
Top Results From Across the Web
"Could not initialize class org.codehaus.groovy.runtime ...
I tried to upgrade a Gradle project to JDK 14. Steps to Reproduce. Create a simple Gradle project by creating the following build.gradle...
Read more >Gradle: Could not initialize class org.codehaus.groovy.runtime ...
This error is caused due to incompatible JAVA JDK and Gradle version in the project. Head to ./android/gradle/wrapper/gradle-properties ...
Read more >Could not initialize class org.codehaus ... - JetBrains YouTrack
What went wrong: Could not initialize class org.codehaus.groovy.runtime.InvokerHelper. Try: Run with --stacktrace option to get the stack trace.
Read more >[ SOLVED ] * What went wrong:Could not initialize class org ...
FAILURE: Build failed with an exception. * What went wrong: Could not initialize class org. codehaus. groovy. runtime. InvokerHelper * Try: Run ...
Read more >Could not initialize class org.codehaus.groovy ... - YouTube
Hi guys in this video I will show you how to fix this errorCould not initialize class org. codehaus. groovy. runtime. InvokerHelper Could...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I got this error on brach
jfx-13
and JDK 14. To fix update Gradle wrapper to at least 6.3 as described here: https://stackoverflow.com/a/61509462/1779504Might be related that gradle has an issue 12599. One has to upgrade gradle to use newer jdk. I updated wrapper with
gradle wrapper
to 6.8. Then I was able to build with./gradlew build check -x javadoc
. However, I still can’t run examples 😦