Jitpack Java 17 kann --add-opens=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED nicht erkennen

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Jitpack Java 17 kann --add-opens=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED nicht erkennen

by Guest » 05 Jan 2025, 12:09

Ich habe ein abgespaltenes Legacy-Open-Source-Projekt, das ich ohne Probleme lokal mit
erstellen kann

Code: Select all

Java 17
Damit es mit dem alten Butterknife funktioniert, verwende ich Folgendes in gradle.properties

Code: Select all

# Cause: superclass access check failed: class butterknife.compiler.ButterKnifeProcessor$RClassScanner (in unnamed module @0x7d7903ba) cannot access class com.sun.tools.javac.tree.TreeScanner (in module jdk.compiler) because module jdk.compiler does not export com.sun.tools.javac.tree to unnamed module @0x7d7903ba
org.gradle.jvmargs=-Xmx1920M \
--add-opens=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED \
--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED \
--add-opens=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED
Wenn ich jedoch versuche, über Jitpack darauf zuzugreifen, erhalte ich eine Fehlermeldung

Code: Select all

------------------------------------------------------------
Gradle 8.7
------------------------------------------------------------

Build time:   2024-03-22 15:52:46 UTC
Revision:     650af14d7653aa949fce5e886e685efc9cf97c10

Kotlin:       1.9.22
Groovy:       3.0.17
Ant:          Apache Ant(TM) version 1.10.13 compiled on January 4 2023
JVM:          17.0.12 (Oracle Corporation 17.0.12+8-LTS-286)
OS:           Linux 4.18.0-25-generic amd64

...

* What went wrong:
Unable to start the daemon process.
This problem might be caused by incorrect configuration of the daemon.
For example, an unrecognized jvm option is used.
Please refer to the user guide chapter on the daemon at https://docs.gradle.org/4.8.1/userguide/gradle_daemon.html
Please read the following process output to find out more:
-----------------------
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF-8 -Dhttps.protocols=TLSv1.2
Unrecognized option: --add-opens=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.
Es scheint, als ob Java 17 von Jitpack nicht erkennen kann (Keine Ahnung warum?)

Code: Select all

--add-opens=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED
Kann mir jemand dabei helfen? Vielen Dank.
Dies ist das vollständige Build-Protokoll – https://jitpack.io/com/github/yccheok/L ... /build.log
Dies ist das gespaltene Projekt – https://github.com/yccheok/LikeButton/tree/fork

Top