簡體   English   中英

未能執行目標 com.github.eirslett:frontend-maven-plugin:1.6:install-node-and-npm(安裝節點和 npm)

[英]Failed to execute goal com.github.eirslett:frontend-maven-plugin:1.6:install-node-and-npm (install node and npm)

我遇到了 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]

我在 windows 上使用 Ubuntu 18.04,它工作正常。 我能用這個做什么? 鏈接到 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版本才能使此插件正常工作。

@maxshuty 響應實際上對我有用,我在使用 m1 Mac 時遇到了同樣的問題。

謝謝!

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM