如何使用 maven-exec-plugin 进行 npm clean?

Posted

技术标签:

【中文标题】如何使用 maven-exec-plugin 进行 npm clean?【英文标题】:How to use maven-exec-plugin for npm clean? 【发布时间】:2020-01-25 11:35:57 【问题描述】:

我正在使用 exec-maven-plugin。我有 npm install 和 npm clean 的扩展。下面是我在 pom 文件中的插件部分。它包含 npm install 、 tsc run 和 npm clean 的扩展。

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>exec-maven-plugin</artifactId>
    <version>1.6.0</version>
    <executions>

      <execution>
        <id>npm run clean (clean)</id>
        <goals>
          <goal>exec</goal>
        </goals>
        <phase>clean</phase>
        <configuration>
          <workingDirectory>./src/</workingDirectory>
          <executable>npm</executable>
          <arguments>
            <argument>clean</argument>
          </arguments>
        </configuration>
      </execution>

    </executions>
  </plugin>

但是当我执行 maven-package 时,它​​会出现以下错误:

Usage: npm <command>

where <command> is one of:
    access, adduser, audit, bin, bugs, c, cache, ci, cit,
    clean-install, clean-install-test, completion, config,
    create, ddp, dedupe, deprecate, dist-tag, docs, doctor,
    edit, explore, get, help, help-search, hook, i, init,
    install, install-ci-test, install-test, it, link, list, ln,
    login, logout, ls, org, outdated, owner, pack, ping, prefix,
    profile, prune, publish, rb, rebuild, repo, restart, root,
    run, run-script, s, se, search, set, shrinkwrap, star,
    stars, start, stop, t, team, test, token, tst, un,
    uninstall, unpublish, unstar, up, update, v, version, view,
    whoami

npm <command> -h  quick help on <command>
npm -l            display full usage info
npm help <term>   search for help on <term>
npm help npm      involved overview

Specify configs in the ini-formatted file:
    /home/user/.npmrc
or on the command line via: npm <command> --key value
Config info can be viewed via: npm help config

npm@6.10.2 /usr/lib/node_modules/npm

[ERROR] Command execution failed.
org.apache.commons.exec.ExecuteException: Process exited with an error: 1 (Exit value: 1)
    at org.apache.commons.exec.DefaultExecutor.executeInternal(DefaultExecutor.java:404)

[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.541 s
[INFO] Finished at: 2019-09-25T11:47:14+02:00
[INFO] Final Memory: 8M/40M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.6.0:exec (npm run clean (clean)) on project

有人可以帮我解决这个问题吗?

提前致谢。

【问题讨论】:

【参考方案1】:

您可以在列表中看到clean 命令没有可用于npm 的参数。

Usage: npm <command>

where <command> is one of:
    access, adduser, audit, bin, bugs, c, cache, ci, cit,
    clean-install, clean-install-test, completion, config,
    create, ddp, dedupe, deprecate, dist-tag, docs, doctor,
    edit, explore, get, help, help-search, hook, i, init,
    install, install-ci-test, install-test, it, link, list, ln,
    login, logout, ls, org, outdated, owner, pack, ping, prefix,
    profile, prune, publish, rb, rebuild, repo, restart, root,
    run, run-script, s, se, search, set, shrinkwrap, star,
    stars, start, stop, t, team, test, token, tst, un,
    uninstall, unpublish, unstar, up, update, v, version, view,
    whoami

npm <command> -h  quick help on <command>
npm -l            display full usage info
npm help <term>   search for help on <term>
npm help npm      involved overview

[ERROR] Command execution failed.

您可以寻找npm-cleanmvn clean

【讨论】:

以上是关于如何使用 maven-exec-plugin 进行 npm clean?的主要内容,如果未能解决你的问题,请参考以下文章

maven-exec-plugin 可以使构建失败吗?

Maven:如何在分叉的 JVM 中执行依赖项?

如何使用JVisualVM进行性能分析

如何使用Docker 进行Java 开发

如何使用JVisualVM进行性能分析

如何使用JVisualVM进行性能分析