将一个非maven项目的jar包安装到本地maven仓库,遇到报错:
The goal you specified requires a project to execute but there is no POM in this directory
当你以为是自己jar包有问题时,才发现是powershell的坑。
运行命令如下:
mvn install:install-file -Dfile=avatica-core-1.17.0-SNAPSHOT.jar \
-DgroupId=org.apache.calcite.avatica -DartifactId=avatica-core \
-Dversion=1.17.0-SNAPSHOT -Dpackaging=jar -DgeneratePom=true
报错如下:
然而同样的命令,在黑框命令行ok
如何让powershell也可以运行?
参数加引号
mvn install:install-file "-Dfile=avatica-core-1.17.0-SNAPSHOT.jar" \
"-DgroupId=org.apache.calcite.avatica" "-DartifactId=avatica-core" \
"-Dversion=1.17.0-SNAPSHOT" "-Dpackaging=jar" "-DgeneratePom=true"
这也是我为啥不喜欢windows的原因,抱歉我对powershell不熟,你非要解析成函数调用,还非要整2套。