exec-maven-plugin plugin error

2019-08-21 10:06发布

I use the exec-maven-plugin as follow

<plugin>
          <artifactId>exec-maven-plugin</artifactId>
          <groupId>org.codehaus.mojo</groupId>
          <version>1.6.0</version>
          <executions>
            <execution>
              <id>npm install</id>
              <goals>
                <goal>exec</goal>
              </goals>
              <phase>generate-sources</phase>
              <configuration>
                <executable>${npm.executable}</executable>
                <arguments>
                  <argument>install</argument>
                </arguments>
                <workingDirectory>${basedir}/target/angular5/tourism</workingDirectory>
                <target>
                  <echo message="Npm install" />
                </target>
              </configuration>
            </execution>
          </executions>
        </plugin>

I have the following error

 java.io.IOException: Cannot run program "npm" (in directory "/Users/admin/Application-Marwen/workspace/Tourism/Tourism-Web/target/angular5/tourism"): error=2, No such file or directory

However the directory "/Users/admin/Application-Marwen/workspace/Tourism/Tourism-Web/target/angular5/tourism" exists and the command npm install works in this directory in the console. I have the Apache Maven 3.5.4 installed and use eclipse

2条回答
太酷不给撩
2楼-- · 2019-08-21 10:44

First, you should edit your question as I mentionned in comments below.

Then, I think you misunderstood the error. In fact, the error indicates that npm is not found inside your directory "/Users/admin/Application-Marwen/workspace/Tourism/Tourism-Web/target/angular5/tourism.

And this is normal. npm is in your PATH that's why you can run npm install successfully.

I recommand you to use a Maven plugin for npm commands:

查看更多
戒情不戒烟
3楼-- · 2019-08-21 10:50

Adding -PlocalNoDeploy as part of your mvn command might resolve this issue.

查看更多
登录 后发表回答