Replies: 3 comments 3 replies
-
Are you importing quarkus-cxf-bom as recommended in https://quarkiverse.github.io/quarkiverse-docs/quarkus-cxf/dev/user-guide/create-project.html#dependency-management ? |
Beta Was this translation helpful? Give feedback.
-
@ppalaga I dug into this a little bit, initially thinking it is related to quarkus-cxf. The same issue is occurring for pretty much any extension that implements CodeGenProvider, including quarkus-grpc and others. |
Beta Was this translation helpful? Give feedback.
-
@radcortez do you happen to know whether this is a known problem? Otherwise, we should file a new Quarkus issue. |
Beta Was this translation helpful? Give feedback.
-
I'm developing an application with quarkus-cxf, and I want to use a custom config source following this guide:
https://quarkus.io/guides/config-extending-support
The problem is that when I add the quarkus-cxf maven dependency, the application doesn't compile, and only work in dev mode
Exec:
mvn quarkus:dev
-> WorksExec:
mvn clean package or mvn compile quarkus:dev
-> Doesn't workFail with:
Failed to execute goal io.quarkus.platform:quarkus-maven-plugin:3.0.3.Final:generate-code (default) on project code-with-quarkus: Quarkus code generation phase has failed: InvocationTargetException: org.eclipse.microprofile.config.spi.ConfigSource: Provider org.acme.config.InMemoryConfigSource not found -> [Help 1]
I created a new project, add the custom config from the quarkus guide and then add the quarkus-cxf maven dependency.
It is possible to use custom config sources with quarkus-cxf?
Beta Was this translation helpful? Give feedback.
All reactions