我和maven有点小问题-
[ERROR]无法执行目标com.github.eirslett:frontend maven插件:1.6:在项目xxx前端上安装节点和npm(安装节点和npm):无法下载节点。js:无法下载https://nodejs.org/dist/v8.11.2/node-v8.11.2-linux-x64.tar.gz:JAVAlang.RuntimeException:意外错误:java。安全InvalidAlgorithmParameterException:trustAnchors参数必须为非空-
我使用的是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
才能使用此插件。
我有一个很多人都有的错误,我认为我在这里找到了一个解决方案。本质上,它是说我的节点版本与node-sass版本不兼容。很多人都有同样的问题,所以我相信链接会有所帮助。然而,当我运行npm安装node-sass@4.14.1时,我得到了一个不同的错误。我知道这是一些简单的修复,但我找不到它!有人明白这是怎么回事吗?
我想通过节点JS连接oracle db。为此,我尝试安装node-oracledb模块。 npm错误!此运行的完整日志可以在以下位置找到:npm err! C:\users\appdata\roaming\npm-cache_logs\2019-04-09t06_36_44_005z-debug.log 我不明白为什么需要python依赖关系才能与oracle DB连接?又该怎么做呢?
我已经做了很多研究,但在这里空空如也。这是一个又长又丑的IMO。我绝对可以浏览到并成功下载错误中首次引用tar.gz。我所有其他的NPM安装都运行良好。我不是SQLite3的超级粉丝,但我有一个项目需要演示给一些同事。任何帮助得到安装将非常感谢。 sqlite3@3.1.6安装C:\ws\linked10\linkedout\node_modules\sqlite3 node-pre-gyp安装-
我不断收到此错误消息: 可能未安装节点包。尝试使用“npm 安装”进行安装。找不到“@angular-devkit/build-angular:dev-server”构建器的节点包。 我做了以下事情来解决这个问题 堆栈溢出中的更多指令
我尝试在Windows 10上安装Node时遇到一些问题,并找到了解决方案。 错误如下: C:\Users\Stephan 解决方案如下。
我想在Windows托管的开发环境中使用gulp和相关的前端工具链。我在尝试使用gulp插件(如Browser-Sync)时遇到了困难,因为node_modules文件夹图扇形,使得windows文件路径太长,无法复制文件。我想要一个务实的方法来处理这个问题,现在就在Windows上,不管节点社区可能会或可能不会提供什么来提高npm在Windows上的可用性。 2个问题 > 是否有Windows的