angularjs 错误:进程错误=193,%1不是有效的Win32应用程序-> [帮助1]

lhcgjxsq  于 2023-10-15  发布在  Angular
关注(0)|答案(3)|浏览(126)

在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>
bybem2ql

bybem2ql1#

出现这个问题是因为我使用的angular版本是1.5。
将可执行文件从npm更改为npm.cmd解决了这个问题!

<execution>
                <id>exec-npm-update</id>
                <phase>generate-sources</phase>
                <configuration>
                  <workingDirectory>${uiResourcesDir}</workingDirectory>
                  <executable>npm.cmd</executable>
                  <arguments>
                    <argument>update</argument>
                  </arguments>
                </configuration>
                <goals>
                  <goal>exec</goal>
                </goals>
              </execution>
klsxnrf1

klsxnrf12#

我也遇到了同样的问题,答案是你需要提供npm.cmd而不是npm

sq1bmfud

sq1bmfud3#

如果你想运行shell或命令提示符命令,而不考虑环境。我说的是npm.cmd(windows),npm.sh(Linux)部分。

将maven-exec-plugin降级到版本1.4.0,这样您就可以只提到(例如)

<executable>npm</executable>
<executable>ng</executable>

相关问题