-
Notifications
You must be signed in to change notification settings - Fork 8
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
Better handling of MANIFEST.MF attributes #435
Conversation
Previously, the build script would add these two attributes irrespective whether or not they'd exist in the Graal artefacts: Specification-Version Implementation-Version With this patch, only updates to the Implementation-Version attribute are done based on the maven version in use. Specification-Version is only added if it's not yet there in a jar or source jar file. Closes: Karm/mandrel-integration-tests#270
The GraalVM maven artifact's
Note for example this:
That is,
After the patch
That is we have after the patch for
No more the duplicate entries and the Thoughts? |
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. My only hesitation is about the Specification-Version
not being the same with the Implementation-Version
.
Thanks for the review! This is pre-existing. We were adding |
Previously, the build script would add these two attributes irrespective whether or not they'd exist in the Graal artefacts:
With this patch, only updates to the Implementation-Version attribute are done based on the maven version in use. Specification-Version is only added if it's not yet there in a jar or source jar file.
Closes: Karm/mandrel-integration-tests#270