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
This PR addresses a build failure in the besu-verkle-trie project while executing the gradle command. The error was caused by the use of the deprecated classifier property in the build.gradle file.
Error Details
Running the gradle command resulted in the following error:
$ gradle
FAILURE: Build failed with an exception.
* Where:
Build file './besu-verkle-trie/build.gradle' line: 111
* What went wrong:
A problem occurred evaluating root project 'besu-verkle-trie'.
> Could not set unknown property 'classifier' for task ':sourcesJar' of type org.gradle.api.tasks.bundling.Jar.
...
Cause
The issue was due to the use of the classifier key, which has been deprecated. The problematic code snippet was:
The classifier property has been replaced with archiveClassifier to maintain compatibility with the latest version of Gradle. The updated code is as follows:
Description
This PR addresses a build failure in the
besu-verkle-trie
project while executing thegradle
command. The error was caused by the use of the deprecatedclassifier
property in thebuild.gradle
file.Error Details
Running the
gradle
command resulted in the following error:Cause
The issue was due to the use of the
classifier
key, which has been deprecated. The problematic code snippet was:Resolution
The
classifier
property has been replaced witharchiveClassifier
to maintain compatibility with the latest version of Gradle. The updated code is as follows:Impact
This change ensures compatibility with Gradle 9.0 and resolves the build failure issue.
The text was updated successfully, but these errors were encountered: