Bump aQute bnd plugin (osgi) to 7.2.3#11341
Merged
gh-worker-dd-mergequeue-cf854d[bot] merged 2 commits intoMay 11, 2026
Merged
Conversation
Version 6.x used the deprecated and then removed `Convention` API, (Jar.getConvention()), bnd now uses the task extension API. Also, bnd 7.x needs Java 17, which is now enforced to run Gradle.
AlexeyKuznetsov-DD
approved these changes
May 11, 2026
sarahchen6
approved these changes
May 11, 2026
Contributor
sarahchen6
left a comment
There was a problem hiding this comment.
🎉
Side note: I wonder why the gitlab pipeline tests are not showing up in github UI..... the associated pipeline looks good though
Contributor
Author
|
EDIT: that seems fixed That's odd indeed ! I'll update the branch just in case. Maybe @cbeauchesne have some ideas ?
|
Contributor
|
/merge |
|
View all feedbacks in Devflow UI.
The expected merge time in
|
This file contains hidden or 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
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.

What Does This Do
Bumps the
biz.aQute.bnd.builderGradle plugin from6.4.0to7.2.3indd-smoke-tests/osgi/build.gradle. This is one of the incremental steps towardGradle 9 compatibility.
Motivation
Gradle 9 removed the
ConventionAPI (AbstractTask.getConvention()), which bnd 6.x used internally to registerBundleTaskConventiononJartasks. bnd 7.0 replaced this withBundleTaskExtension(extensions API), making it Gradle 9-ready.The
Bundletask type used in this module is a direct usage with no conventionaccessor calls in the build script, so no script changes are required beyond the
version bump.
Additional Notes
Sub-PR from #10402, #11272