gpt4 book ai didi

maven - 在 exec-maven-plugin 中将工作目录传递给 npm

转载 作者:行者123 更新时间:2023-12-02 08:27:27 28 4
gpt4 key购买 nike

我正在尝试将 npm 作为我的 Maven 构建的一部分运行。我正在使用 exec-maven-plugin,这是我的 pom.xml 插件部分

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<id>exec-npm-install</id>
<phase>generate-sources</phase>

<goals>
<goal>exec</goal>
</goals>

<configuration>
<executable>npm</executable>
<arguments>
<argument>build</argument>
</arguments>
<workingDirectory>${basedir}/src/main/webapp</workingDirectory>
</configuration>

</execution>
</executions>
</plugin>

当我运行 mvn clean package 或 mvn generate-sources 时,npm 没有运行。

在我的 package.json 中,我有以下脚本。
"scripts": {
"start": "npm run build && serve .",
"build": "npm run build-js && npm run build-css",
"watch": "npm run watch-js & npm run watch-css & serve .",
"watch-build": "npm run watch-js && npm run watch-css && npm run build-js && npm run build-css && serve .",
"test": "npm run lint -s && npm run build",
"build-css": "rework-npm index.css | cleancss -o build/build.css",
"build-js": "browserify --extension=.jsx --extension=.js src/app.jsx > build/build.js",
"watch-js": "watchify --extension=.jsx --extension=.js src/app.jsx -o build/build.js --debug --verbose",
"watch-css": "nodemon -e css --ignore build/build.css --exec 'rework-npm index.css -o build/build.css'",
"lint-eslint": "eslint .",
"lint-jscs": "jscs .",
"lint": "npm run lint-eslint && npm run lint-jscs"
}

因此我称之为构建。

早些时候,当我使用 npm install 时,我确实看到了正在安装的 npm 包。

另外我如何指定 npm 的工作目录?

我正在使用,这就是 package.json 所在的位置。
<workingDirectory>${basedir}/src/main/webapp</workingDirectory>

谢谢

最佳答案

您需要执行 npm run build运行 npm 脚本,但您正在执行 npm build ,这是一个 npm 生命周期事件。

<execution>
<id>npm run build</id>
<phase>generate-sources</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>npm</executable>
<arguments>
<argument>run</argument>
<argument>build</argument>
</arguments>
</configuration>
</execution>

关于maven - 在 exec-maven-plugin 中将工作目录传递给 npm,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30771693/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com