Maven-Multi-Module project and Quarkus-Extensions #33148
-
Say we have the following structure:
Is it necessary that module A is indexed by a jandex index or similar (https://quarkus.io/guides/cdi-reference#bean_discovery) so that the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
/cc @quarkusio/devtools (maven) |
Beta Was this translation helpful? Give feedback.
-
If the |
Beta Was this translation helpful? Give feedback.
If the
server
depends onmodule A
andmodule A
depends onquarkus-jaxb
then theserver
will have a transitive dependency onquarkus-jaxb
which will be recognized as a Quarkus extension. There is no need to add any bean discovery config for that.