当前位置: 首页 > 知识库问答 >
问题:

Maven-找不到有效的证书路径

章威
2023-03-14

我是maven的新手,在添加依赖项(sl4j)时遇到了麻烦。我得到的这个项目显然是从Ant转换成maven的。顺便说一句,干净的安装是不起作用的。下面是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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.xxx.tools</groupId>
    <artifactId>someName</artifactId>
    <version>1.0</version>
    <name>A Name</name>
    <description>Description</description>

    <properties>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-shade-plugin</artifactId>
                <version>3.1.0</version>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>shade</goal>
                        </goals>
                        <configuration>
                            <transformers>
                                <transformer
                                    implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
                                    <mainClass>com.MyClient</mainClass>
                                </transformer>
                            </transformers>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>

它在干净安装时会给出以下消息:

`ERROR] Failed to execute goal org.apache.maven.plugins:maven-shade-plugin:3.1.0:shade (default) on project xxxx: Execution default of goal org.apache.maven.plugins:maven-shade-plugin:3.1.0:shade failed: Plugin org.apache.maven.plugins:maven-shade-plugin:3.1.0 or one of its dependencies could not be resolved: Failed to collect dependencies at org.apache.maven.plugins:maven-shade-plugin:jar:3.1.0 -> org.apache.maven:maven-plugin-api:jar:3.0 -> org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2 -> org.codehaus.plexus:plexus-component-annotations:jar:1.6: Failed to read artifact descriptor for org.codehaus.plexus:plexus-component-`annotations:jar:1.6: Could not transfer artifact org.codehaus.plexus:plexus-component-annotations:pom:1.6 from/to central (https://repo.maven.apache.org/maven2): sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target -> [Help

共有1个答案

刁英朗
2023-03-14

您的Maven正在尝试从位于HTTPS://repo.Maven.apache.org/maven2的Maven中央存储库下载间接依赖项,该存储库是一个安全的HTTP服务器(HTTPS)。可能您的Java安装上有一些证书问题,或者您的网络基础设施上有一些安全规则阻止了访问。

首先尝试在浏览器上访问该URL并检查其是否可操作。如果你能访问网站,问题就不在你的网络上。有问题的是,您需要以某种方式修复Java受信任证书列表,以便接受该服务器。请查看以下问题/答案:“PKIX路径构建失败”和“无法找到到请求目标的有效认证路径”

但是如果您真的不能从浏览器使用HTTPS访问Maven Central Repo,可能是因为您的代理规则阻止了您下载服务器证书。当然,它也不能用于Maven。然后,看一看这是另一个问题/答案:代理背后使用Maven和SSL的问题

 类似资料: