yaoquanxin commented on issue #8104: URL: https://github.com/apache/seatunnel/issues/8104#issuecomment-2495924342
thanks for bigbro to solving the proble. why we meet the question? because window enviroment will cut out maven command. 在 Windows 环境下,命令行解析器(如 CMD 或 PowerShell)对命令的解析可能导致参数被截断或错误解释。具体到你的问题中,-D 后面的内容可能由于解析器对符号 . 的处理不当而被误解析。 错误根本原因: Maven将.test.skip 解释为i一个生命周期阶段(lfiecycle phase),由于命令解释器错误地分割-D后面的内容,导致它变成了无效参数. 解决方案: step1: 将拉取下来的代码回滚 rollback(可以全部回滚的,亲测) step2: ./mvnw install -Dmaven.test.skip=true 更改为: ./mvnw install '-Dmaven.test.skip=true' 并在在控制台输入. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@seatunnel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org