문제

Does anyone know what the -B maven parameter does? Sample use:

maven clean install -B -U -e

(I'm seeing this in a legacy Jenkins job config) Thanks

도움이 되었습니까?

해결책

-B is a shorthand for --batch-mode. It allows you to perform a release in a non-interactive way. Having said that, using is in conjunction with the clean and install targets seems redundant to me as these goals are non-interactive by nature.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top