10

I'm having various Gradle problems after a new clean Eclipse install. They seem to be associated w/ this "Problem" message:

Could not run phased build action using connection to Gradle distribution 'https://services.gradle.org/distributions/gradle-7.1.1-bin.zip'.
Initialization script 'Z:\eclipse-workspace\.metadata\.plugins\org.eclipse.buildship.core\init.d\eclipsePlugin.gradle'
Could not compile initialization script 'Z:\eclipse-workspace\.metadata\.plugins\org.eclipse.buildship.core\init.d\eclipsePlugin.gradle'.
startup failed:
General error during semantic analysis: Unsupported class file major version 60
java.lang.IllegalArgumentException: Unsupported class file major version 60
    at groovyjarjarasm.asm.ClassReader.<init>(ClassReader.java:196)
.....
    at org.gradle.internal.concurrent.ThreadFactoryImpl$ManagedThreadRunnable.run(ThreadFactoryImpl.java:56)
    at java.base/java.lang.Thread.run(Thread.java:831)
1 error

I've already tried deleting .gradle & "Gradle->Refresh Gradle Project". I've also tried this: stackoverflow

My Java install is clean:

java version "16.0.1" 2021-04-20

& confirmed Eclipse is pointing to it ("Preferences->Java->Installed JREs").

Installation details:

Buildship: Eclipse Plug-ins for Gradle  3.1.5.v20210113-0929
Eclipse IDE for Java Developers 4.20.0.20210612-1200    

Windows 10.

Eclipse Install Err Log:

!ENTRY org.eclipse.buildship.core 2 2 2021-07-09 11:22:05.951
!MESSAGE Initialize project testgradleprj failed due to an error in the referenced Gradle build.
!STACK 0
org.gradle.tooling.BuildException: Could not execute build using connection to Gradle distribution 'https://services.gradle.org/distributions/gradle-7.1.1-bin.zip'.
JDOaktown
  • 3,153
  • 6
  • 35
  • 49

2 Answers2

8

Gradle 6.8 does not work with Java 16.
Java 16 supported starting with Gradle 7

"In previous Gradle versions, running Gradle itself on Java 16 resulted in an error."

https://docs.gradle.org/7.0/release-notes.html#java-16

LMC
  • 8,575
  • 2
  • 25
  • 45
5

Thanks to LMC. I changed the project prefs->Gradle from Wrapper to Specific=7.1.1 :

enter image description here

JDOaktown
  • 3,153
  • 6
  • 35
  • 49
  • 2
    You could also try [upgrading the wrapper](https://docs.gradle.org/current/userguide/gradle_wrapper.html). – LMC Jul 09 '21 at 23:19
  • Thanks. I saw this but couldn't figure out how to apply it against Eclipse. I right-clicked the "wrapper" task in the Gradle Tasks button but still not clear. – JDOaktown Jul 09 '21 at 23:29
  • 1
    OK. I did the following: Z:\eclipse-workspace\gradleprj4>.\gradlew wrapper --gradle-version 7.1.1 BUILD SUCCESSFUL in 1s 1 actionable task: 1 up-to-date – JDOaktown Jul 09 '21 at 23:37
  • 1
    Eclipse will respect the wrapper in the project I think. – LMC Jul 09 '21 at 23:37