使用 frontend-maven-plugin 在 mac M1 上构建失败:无法下载 Node.js

Mat*_*s M 3 maven frontend-maven-plugin

尝试frontend-maven-plugin下载不存在的节点文件。

当我查看https://nodejs.org/dist/v10.15.3时,我只能看到一个名为node-v10.15.3-darwin-x64.tar.gz

[INFO] --- frontend-maven-plugin:1.7.5:install-node-and-npm (install node and npm) @ oauth-ui-authorization-code-angular-zuul ---
[INFO] Installing node version v10.15.3
[INFO] Downloading https://nodejs.org/dist/v10.15.3/node-v10.15.3-darwin-arm64.tar.gz to /Users/me/.m2/repository/com/github/eirslett/node/10.15.3/node-10.15.3-darwin-arm64.tar.gz
[INFO] No proxies configured
[INFO] No proxy was configured, downloading directly
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO] 
[INFO] mymodule 2.2.6.RELEASE FAILURE [  4.536 s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  36.930 s
[INFO] Finished at: 2022-09-28T14:28:09+02:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal com.github.eirslett:frontend-maven-plugin:1.7.5:install-node-and-npm (install node and npm) on project mymodule: Could not download Node.js: Got error code 404 from the server. -> [Help 1]
Run Code Online (Sandbox Code Playgroud)

[错误]

Mat*_*s M 7

这是 中的一个错误frontend-maven-plugin。升级到当前版本应该会有所帮助:

<plugin>
    <groupId>com.github.eirslett</groupId>
    <artifactId>frontend-maven-plugin</artifactId>
    <version>1.12.1</version>
    ...
Run Code Online (Sandbox Code Playgroud)

谢谢: