Exec-NPM-Install为本地关系抛出错误

时间:2018-11-01 07:27:10

标签: node.js npm

我一直试图在Windows 10操作系统上构建应用程序,并且得到的代码必须运行“ mvn install”才能构建应用程序。当我这样做时,出现以下错误:

  

[错误]无法执行目标
  org.codehaus.mojo:exec-maven-plugin:1.4.0:exec(exec-npm-install)on
  项目过滤器:命令执行失败。进程退出并出现
  错误:1(退出值:1)-> [帮助1]

POM:
<build>
    <finalName>filter</finalName>
    <plugins>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>exec-maven-plugin</artifactId>
            <executions>
                <execution>
                    <id>exec-npm-install</id>
                    <phase>generate-sources</phase>
                    <configuration>
                        <executable>npm</executable>
                        <arguments>
                            <argument>--loglevel</argument>
                            <argument>error</argument>
                            <argument>install</argument>
                        </arguments>
                    </configuration>
                    <goals>
                        <goal>exec</goal>
                    </goals>
                </execution>

我检查过的堆栈溢出链接没有帮助: Maven failed to execute goal - cannot run program npm

任何人都可以让我知道解决方案吗?

0 个答案:

没有答案