-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Only add needed dependencies in the uber jar #924
Merged
fab-10
merged 7 commits into
arith-dev
from
feat/issue-923/remove-the-need-for-the-uber-jar
Dec 2, 2024
Merged
Only add needed dependencies in the uber jar #924
fab-10
merged 7 commits into
arith-dev
from
feat/issue-923/remove-the-need-for-the-uber-jar
Dec 2, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Signed-off-by: Fabio Di Fabio <fabio.difabio@consensys.net>
powerslider
reviewed
Aug 12, 2024
powerslider
reviewed
Aug 12, 2024
powerslider
approved these changes
Aug 12, 2024
…uber-jar # Conflicts: # arithmetization/build.gradle # gradle.properties # gradle/dependency-management.gradle # gradle/dist.gradle # reference-tests/build.gradle
fab-10
force-pushed
the
feat/issue-923/remove-the-need-for-the-uber-jar
branch
from
November 28, 2024 17:54
df843fe
to
c25f8ca
Compare
Signed-off-by: Fabio Di Fabio <fabio.difabio@consensys.net>
fab-10
force-pushed
the
feat/issue-923/remove-the-need-for-the-uber-jar
branch
from
November 29, 2024 17:42
b03d935
to
e706fd0
Compare
fab-10
changed the title
Remove the need for the uber jar
Only add needed dependencies in the uber jar
Nov 29, 2024
DavePearce
approved these changes
Dec 1, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Signed-off-by: Fabio Di Fabio <fabio.difabio@consensys.net>
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Optimize the produced jar to only contains dependencies that are not already provided by Besu.
When adding a new dependency, as first thing verify it is already provided by Besu BOM, if yes then no need to declare it in the
dependency-management.gradle
file, use it in the required project.If a dependency that is not already provided by Besu is required, then declare it in the
dependency-management.gradle
file, and mostly important usepluginImplementation
configuration to use it in the project, this way it will be also included in the final jar.This approach avoid duplicating dependencies classes in the final jar, and so reduces the jar size, and reduces the risk of classes clashes and errors at runtime.
fixes #923