We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Making an uberjar when one of your dependencies is a multi-release jar does not mark your jar as multi-release
To Reproduce
(defproject aproject "0.0.1" :dependencies [[org.apache.logging.log4j/log4j-core "2.13.3"] [org.apache.logging.log4j/log4j-api "2.13.3"]])
lein uberjar
log4j is a multi-release jar which includes code specific to different jvm version. When
Actual behavior The manifest file does not include Multi-Release: true
Multi-Release: true
Expected behavior The manifest file includes this entry to correctly mark the jar as multi-release.
Workaround specify
:manifest {"Multi-Release" true}
in project.clj
The text was updated successfully, but these errors were encountered:
This seems like a duplicate of #2743.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Making an uberjar when one of your dependencies is a multi-release jar does not mark your jar as multi-release
To Reproduce
lein uberjar
log4j is a multi-release jar which includes code specific to different jvm version. When
Actual behavior
The manifest file does not include
Multi-Release: true
Expected behavior
The manifest file includes this entry to correctly mark the jar as multi-release.
Workaround
specify
in project.clj
The text was updated successfully, but these errors were encountered: