在maven中运行exec-npm-update时,我收到以下错误消息:Process error=193,%1 is not a valid Win32 application -> [Help 1]
下面是pom文件的片段。
<execution>
<id>exec-npm-update</id>
<phase>generate-sources</phase>
<configuration>
<workingDirectory>${uiResourcesDir}</workingDirectory>
<executable>npm</executable>
<arguments>
<argument>update</argument>
</arguments>
</configuration>
<goals>
<goal>exec</goal>
</goals>
</execution>
3条答案
按热度按时间bybem2ql1#
出现这个问题是因为我使用的angular版本是1.5。
将可执行文件从npm更改为npm.cmd解决了这个问题!
klsxnrf12#
我也遇到了同样的问题,答案是你需要提供npm.cmd而不是npm
sq1bmfud3#
如果你想运行shell或命令提示符命令,而不考虑环境。我说的是npm.cmd(windows),npm.sh(Linux)部分。
将maven-exec-plugin降级到版本1.4.0,这样您就可以只提到(例如)