prevent Dependabot from proposing Felix 6+ or Karaf 4.4.8+, which require newer Java runtimes
Why the Dependabot versions were adjusted
Felix Maven Bundle Plugin 6.x upgrades to bnd 7 and requires Java 17. Karaf Maven Plugin 4.4.10 contains Java 11 bytecode and declares Java [11,) plus Maven 3.9.12. Both conflict with the project's Java 8 support requirement.
Validation
mvn -B -ntp clean verify — passed on Oracle JDK 8u152 with Maven 3.9.10, all 13 modules
mvn -B -ntp -DskipTests clean package — passed on JDK 21, all 13 modules including Karaf feature verification
compared old/new plugin JAR contents and descriptors; selected plugins execute on Java 8 and retain every configured goal/parameter
compared generated project JARs entry-by-entry; all ten main JARs retain identical entry sets and ordinary class contents
verified changed OSGi imports are explicitly optional and Java 9 module descriptors retain the same exported/required modules
The pre-existing test suite on JDK 21 still has 15 reflection-related errors in configuration test helpers; the same failures occur on unmodified develop.
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
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.
Summary
Why the Dependabot versions were adjusted
Felix Maven Bundle Plugin 6.x upgrades to bnd 7 and requires Java 17. Karaf Maven Plugin 4.4.10 contains Java 11 bytecode and declares Java [11,) plus Maven 3.9.12. Both conflict with the project's Java 8 support requirement.
Validation
The pre-existing test suite on JDK 21 still has 15 reflection-related errors in configuration test helpers; the same failures occur on unmodified develop.