Maven:消除[INFO]线但不是“真实”输出?

时间:2015-11-13 05:40:36

标签: maven pom.xml

我想mvn help:effective-pom并只显示代表POM的XML。

当我运行mvn -q help:effective-pom来过滤[INFO]及相关行时,它还会禁用POM的打印。

是否可以选择仅显示POM,而不显示[INFO]行?

1 个答案:

答案 0 :(得分:1)

我建议阅读documentation of maven-help-plugin,它可以将结果写入文件。

所以你可以像这样调用effective-pom目标:

mvn help:effective-pom -Doutput=TheFileYouLikeToHaveTheOutputIn.xml