Replies: 2 comments 13 replies
-
Option 1 sounds best to me as it's clear mapping to Maven concepts thus will match expectations better than extra attribute or manually add dependencies. |
Beta Was this translation helpful? Give feedback.
13 replies
-
If no more suggestion I would then go ahead and add |
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
-
Now that we correctly filter dependencies scopes it shows that it might cause confusion for runtime scoped dependencies.
The
runtime
scope is a bit special as maven defines it as:That mean that if we want it currently one has to select
test
scope.I see the following options:
runtime
scope and handle it as something betweencompile
andtest
(include everythingcompile
would include and includeruntime
dependencies but nottest
scoped ones.includeRuntime
that additionally include runtime scoped dependencies@akurtakov @mickaelistria @HannesWell any preferences?
Beta Was this translation helpful? Give feedback.
All reactions