1
我想列出所有工件在com.example
,除了那些在com.example.foo.bar
。有mvn依賴項:列表打印出組中的所有工件,除了子組中的工件嗎?
對於mvn dependency:tree
,我可以這樣做:
mvn dependency:tree -Dexcludes=*bar* -Dincludes=com.example.*
然而,當我嘗試:
mvn dependency:list -DexcludeGroupIds=com.example.foo.bar -DincludeGroupIds=com.example
的Maven還列出了bar
一切。
問題:如何使用list
鏡像dependency:tree
的結果?
所以,如果我不知道'com.example'的子組(只知道我不想'com.example.foo'及其子組),我不能使用'list',對嗎? – Christian
@Christian確實,你需要知道他們,否則他們不能被'list'匹配。 「樹」更加靈活,依賴於模式。 –