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.
Quarkus 3 brings two major changes - the javax/jakarta namespace change, and a change to classloading. Quarkus 2 core defined many pact modules to be parentfirst. In Quarkus 3, that will be done by this extension. The Quarkus 3 kotlin extension also stopped loading kotlin parent first.
Consumer
I was able to remove all the parent-first dependencies for the consumer.
Provider
For the provider, oddly, I had it working with a single parent-first dependency (one pact library) in December, but now I needed the full set. I think that's because of the reversion of quarkusio/quarkus#29785 between when I first did the work and now.
I will continue working to see if I can reduce it down to a minimal set, or having both extensions in the same project will be a problem. Ideally, the provider would work without any parent first dependencies, but that is a bigger piece of work.
I did have to disable one test, and have raised #73 to reflect the failing test, but I think #73 is not a serious issue.