I want a list of runtime, compile and provided dependencies when using mvn dependency:list. I want to exclude dependencies with a test scope. "includeScope" has runtime and compile options, I want a union of the two. Is there a parameter I can use to achieve this?
Asked
Active
Viewed 178 times
1
-
You could use `excludeScope=test` – seenukarthi Aug 05 '21 at 15:18
-
1excludeScope=test doesn't work because it excludes all dependencies – scarvish Aug 05 '21 at 15:22