我的项目com.example.foo
使用了依赖关系com.example.bar
。但它也使用com.example.baz
,后者又使用com.example.bar
。
当我运行mvn dependency:tree
时,我会得到类似
com.example.foo
+- com.example.bar
\- com.example.baz
问题:我怎样才能让maven在其输出中重复bar
的依赖,就像这样(尊重我设置的任何过滤器选项,如-Dincludes=com.example.*
):
com.example.foo
+- com.example.bar
\- com.example.baz
\- com.example.bar