gpt4 book ai didi

javascript - 未能执行 objective-c om.github.eirslett :frontend-maven-plugin:1. 6:install-node-and-npm(安装 Node 和 npm)

转载 作者:行者123 更新时间:2023-12-03 21:20:44 27 4
gpt4 key购买 nike

我遇到了maven这个小问题-
[ERROR] Failed to execute goal com.github.eirslett:frontend-maven-plugin:1.6:install-node-and-npm (install node and npm) on project xxx-frontend: Could not download Node.js: Could not download https://nodejs.org/dist/v8.11.2/node-v8.11.2-linux-x64.tar.gz: java.lang.RuntimeException: Unexpected error: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty -> [Help 1]
我使用的是 Ubuntu 18.04,在 Windows 上运行良好。我能用这个做什么?链接到 nodejs 很好。

我试过了:
- 删除 ~/m2/repository/com/github/eirslett,但没有帮助,
- 分别使用 global 和 intellij maven,3.5.2 和 3.3.9,
- 多个 mvn 全新安装

会不会是防火墙的问题?如果是,那么为什么以及如何解决它?
或者至少如果有人可以提供关于这个废话发生了什么的线索:/

这是我的 pom.xml:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<artifactId>xxx-frontend</artifactId>
<version>0.0.4</version>
<packaging>pom</packaging>
<name>xxx::Frontend</name>
<description>frontend</description>

<parent>
<groupId>xx.xxx</groupId>
<artifactId>xxx</artifactId>
<version>0.0.1</version>
<relativePath>..</relativePath>
</parent>

<profiles>
<profile>
<id>build-with-front</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>1.6</version>
<configuration>
<nodeVersion>v8.11.2</nodeVersion>
<npmVersion>6.1.0</npmVersion>
<installDirectory>node</installDirectory>
</configuration>

<executions>
<execution>
<id>install node and npm</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
<phase>generate-resources</phase>
</execution>

<execution>
<id>npm install</id>
<goals>
<goal>npm</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<arguments>install</arguments>
</configuration>
</execution>

<execution>
<id>npm build</id>
<goals>
<goal>npm</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<arguments>run maven:build</arguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<filesets>
<fileset>
<directory>dist</directory>
</fileset>
</filesets>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

最佳答案

由于这是在谷歌上搜索此错误时的最佳答案,因此如果您遇到此问题并且在带有新 M1 芯片的 Mac 上,您需要至少升级到版本 1.11.0让这个插件工作。

关于javascript - 未能执行 objective-c om.github.eirslett :frontend-maven-plugin:1. 6:install-node-and-npm(安装 Node 和 npm),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51623180/

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