Replies: 1 comment
-
/cc @evanchooly (kotlin), @geoand (kotlin) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello.
I have a multi-module gradle project written in Kotlin.
I have my main quarkus application in module A, that imports another module DB using
Both using arc cdi with
jakarta-enterprise-cdi
,On Project DB I have defined several beans of the same type (
DSLContext
), all with dedicated qualifier annotations -@TenantDsl
and@ConfigDsl
.I do have
jandex-plugin
enabled in project B.Now, the beans from the project DB are correctly created and managed by quarkus (I can see them in dev tools, also the exception below states that they exist).
However, I cannot inject those beans into
because:
For some reason, quarkus does not see the qualifier annotation used in module A, when wiring beans from module DB.
Beta Was this translation helpful? Give feedback.
All reactions