假设我的 maven 项目位于/some/location/project并且我当前的位置是/another/location/如何在不更改项目位置的情况下运行 maven build cd /some/location/project?
/some/location/project
/another/location/
cd /some/location/project
您可以使用参数-f(或--file)并指定您的 pom 文件的路径,例如mvn -f /path/to/pom.xml
-f
--file
mvn -f /path/to/pom.xml
这运行 maven “就好像”它在/path/to工作目录中一样。
/path/to