fix: ignore Apicurio 3 split packages in Quarkus ARC - #2867
Merged
MikeEdgar merged 1 commit intoAug 27, 2026
Merged
Conversation
After the Apicurio 2.x to 3.x upgrade, SplitPackageProcessor warns on client and serde packages that now live in multiple artifacts. Keep the existing content/rules ignores and add client.* and serde.*. Closes #2855 Signed-off-by: JAYA DILEEP <114493600+seethinajayadileep@users.noreply.github.com>
2 tasks
MikeEdgar
approved these changes
Aug 27, 2026
MikeEdgar
left a comment
Member
There was a problem hiding this comment.
LGTM, thanks @seethinajayadileep . I'll merge once the CI runs. I don't think the 2nd PR was needed since the first one was updated when you pushed the update to the branch. Just FYI for the future.
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.
Summary
After the Apicurio 2.x → 3.x upgrade,
SplitPackageProcessorwarns because several packages now live in multiple artifacts:io.apicurio.registry.client/client.common/client.common.authio.apicurio.registry.serde.protobuf/serde.protobuf.refio.apicurio.registry.serde.avroThis updates
quarkus.arc.ignored-split-packagesinapi/src/main/resources/application.propertiesto keep the existingcontent.*andrules.*ignores and addclient.*andserde.*.Replaces #2866 (same change, DCO Signed-off-by on the commit).
Test plan
Detected a split package usagewarnings for those Apicurio 3 packages are gonecontent.*/rules.*ignores still presentCloses #2855