-
Notifications
You must be signed in to change notification settings - Fork 30
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
Method parameter injection fails with parametrized argument types #149
Comments
Thanks for issue and PR @JHahnHRO! We can definitely have this fixed on current main branch but older versions are no longer maintained. |
I'm using 2.0.2 regularly, because we're still using javax.* namespaces at work. We're will be migrating to jakarta.*, Wildfly 27+, Quarkus 3, ... next year I hope and I will push for it. However, it's not guaranteed. For the next few months at least, we're stuck with EE8. |
Ok, if it were blocking you in some way, do come back and we can look for a solution. Otherwise, I'd rather keep those old versions dormant :) |
The following three test fail:
The reason is that
WeldJunit5Extension
usesgetContainerFromStore(extensionContext).select(parameterContext.getParameter().getType(), ...
instead of
getContainerFromStore(extensionContext).select(parameterContext.getParameter().getParametrizedType(), ...
The text was updated successfully, but these errors were encountered: