Skip to content
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

Introduce property to control CXF dependencies #72

Closed
ciscoo opened this issue Mar 2, 2023 · 0 comments
Closed

Introduce property to control CXF dependencies #72

ciscoo opened this issue Mar 2, 2023 · 0 comments
Labels
type: enhancement A general enhancement
Milestone

Comments

@ciscoo
Copy link
Owner

ciscoo commented Mar 2, 2023

Importing the BOM as documented does not really work. Some dependencies get upgraded, some do not. A workaround is:

import io.mateo.cxf.codegen.CxfCodegenPlugin

configurations.named(CxfCodegenPlugin.CXF_CODEGEN_CONFIGURATION_NAME).configure {
	resolutionStrategy.eachDependency { details ->
		if (details.requested.group == "org.apache.cxf") {
			details.useVersion("4.0.0")
			details.because("Jakarta")
		}
	}
}

Probably will need to bring back the extension that was just removed.

@ciscoo ciscoo added the type: enhancement A general enhancement label Mar 2, 2023
@ciscoo ciscoo added this to the 1.2.0 milestone Mar 2, 2023
@ciscoo ciscoo closed this as completed in 8b82572 Mar 6, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: enhancement A general enhancement
Projects
None yet
Development

No branches or pull requests

1 participant