You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem: deprecated features of 7.?? Gradle used in build.gradle
Effect: might cause crashes, or just gradle warnings.
Using Gradle 8.0 here, should note in readme a dependency on using a pre-8.0 version of gradle to install, otherwise there might be issues, get a lot of gradle warnings :) Or you could change over to 8.0 Shrug. If so, warnings suggest changes as listed below:
prob just replace baseName with archiveBaseName and see if it throws an error.
Adding text of error message below >PS C:...\git\Ghidra-GameCube-Loader> ./gradlew --warning-mode all
Fixes errors that appeared as warnings in Gradle 7:
* Configurations no longer allowed as Dependencies
* AbstractArchiveTask API Cleanup: Deprecated properties `baseName`, `extension`, `destinationDir`, and `version` have been removed in Gradle 8. Instead use `archiveBaseName`, `archiveExtension`, `destinationDirectory`, and `archiveVersion`.
https://docs.gradle.org/current/userguide/upgrading_version_7.html#abstractarchivetask_api_cleanupClosesCuyler36#67.
Problem: deprecated features of 7.?? Gradle used in build.gradle
Effect: might cause crashes, or just gradle warnings.
Using Gradle 8.0 here, should note in readme a dependency on using a pre-8.0 version of gradle to install, otherwise there might be issues, get a lot of gradle warnings :) Or you could change over to 8.0 Shrug. If so, warnings suggest changes as listed below:
prob just replace baseName with archiveBaseName and see if it throws an error.
Adding text of error message below >PS C:...\git\Ghidra-GameCube-Loader> ./gradlew --warning-mode all
The text was updated successfully, but these errors were encountered: