-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
Use quarkus-security-test-utils
and quarkus-arc-test-supplement
dependencies within a test scope
#46497
Use quarkus-security-test-utils
and quarkus-arc-test-supplement
dependencies within a test scope
#46497
Conversation
Status for workflow
|
🎊 PR Preview 453add3 has been successfully built and deployed to https://quarkus-pr-main-46497-preview.surge.sh/version/main/guides/
|
Status for workflow
|
hey @mkouba , is changing scope of the |
Making |
Alright, thanks. |
Good catch! |
I mentioned scope of these dependencies isn't what I expected when I analyzed Quarkus core dependencies that are not managed by Quarkus BOM. I expected they will have a test scope but nope.
quarkus-security-test-utils
here I am pretty sure that compile scope doesn't make sense because we don't expect other deployment modules of extensions will use this internal tool; if they need it, they should include it explicitlyquarkus-arc-test-supplement
seems like purely test scope dependency, but there can be a reason why it must be in a compile scope I don't know about