Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我最近发现我处理的 pom 越来越复杂,有子模块,由于平台特定(非 java)相关的错误等可能导致失败的多个步骤......
由于 maven 的功能现在更加复杂,是否有任何工具可以让我们调试/单步调试 maven 构建,mojo by mojo,或者例如,逐个模块?目前,我通常求助于运行构建并通过肉眼扫描标准 mvn 咒语的相当冗长的输出中的错误。
mvn "你的参数列表" | grep -i "你的错误短语" ? 这就是我正在使用的...