Skip to content
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
merged 7 commits into from
Dec 2, 2024

Conversation

fab-10
Copy link
Collaborator

@fab-10 fab-10 commented Aug 12, 2024

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 use pluginImplementation 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

Signed-off-by: Fabio Di Fabio <fabio.difabio@consensys.net>
@fab-10 fab-10 requested a review from powerslider August 12, 2024 16:39
gradle.properties Outdated Show resolved Hide resolved
powerslider and others added 2 commits August 15, 2024 11:04
…uber-jar

# Conflicts:
#	arithmetization/build.gradle
#	gradle.properties
#	gradle/dependency-management.gradle
#	gradle/dist.gradle
#	reference-tests/build.gradle
@fab-10 fab-10 force-pushed the feat/issue-923/remove-the-need-for-the-uber-jar branch from df843fe to c25f8ca Compare November 28, 2024 17:54
@fab-10 fab-10 force-pushed the feat/issue-923/remove-the-need-for-the-uber-jar branch from b03d935 to e706fd0 Compare November 29, 2024 17:42
@fab-10 fab-10 marked this pull request as ready for review November 29, 2024 17:49
@fab-10 fab-10 changed the title Remove the need for the uber jar Only add needed dependencies in the uber jar Nov 29, 2024
@DavePearce DavePearce self-requested a review December 1, 2024 21:08
Copy link
Collaborator

@DavePearce DavePearce left a 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>
@fab-10 fab-10 merged commit 81751a5 into arith-dev Dec 2, 2024
5 checks passed
@fab-10 fab-10 deleted the feat/issue-923/remove-the-need-for-the-uber-jar branch December 2, 2024 12:58
@fab-10 fab-10 mentioned this pull request Dec 6, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Remove the need for the uber jar
3 participants