不可解析的导入 POM:无法传输工件

问题描述 投票:0回答:3

这是我的 pom.xml ,我得到的错误是:

不可解析的导入 POM:无法从/到中央 (http://repo.maven.apache.org/maven2) 传输工件 org.glassfish.jersey:jersey-bom:pom:2.9:repo.maven。 apache.org @ 第 14 行,第 25 列:未知主机 repo.maven.apache.org

org.glassfish.jersey.containers:jersey-container-grizzly2-http:jar 的“dependency.dependency.version”丢失。 @第25行第21列

<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>

<groupId>com.example</groupId>
<artifactId>simple-service</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>simple-service</name>

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.glassfish.jersey</groupId>
            <artifactId>jersey-bom</artifactId>
            <version>${jersey.version}</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

<dependencies>
    <dependency>
        <groupId>org.glassfish.jersey.containers</groupId>
        <artifactId>jersey-container-grizzly2-http</artifactId>
    </dependency>
    <!-- uncomment this to get JSON support:
     <dependency>
        <groupId>org.glassfish.jersey.media</groupId>
        <artifactId>jersey-media-moxy</artifactId>
    </dependency>
    -->
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.9</version>
        <scope>test</scope>
    </dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>2.5.1</version>
            <inherited>true</inherited>
            <configuration>
                <source>1.7</source>
                <target>1.7</target>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>exec-maven-plugin</artifactId>
            <version>1.2.1</version>
            <executions>
                <execution>
                    <goals>
                        <goal>java</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <mainClass>com.example.Main</mainClass>
            </configuration>
        </plugin>
    </plugins>
</build>

<properties>
    <jersey.version>2.9</jersey.version>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

我尝试过这样做这个,但没有任何改变。有人可以指导我吗?

maven jersey pom.xml
3个回答
13
投票

通过修改 settings.xml 以反映我组织内的防火墙属性解决了该问题。谢谢大家。


0
投票

是的,我有同样的问题。这是因为settings.xml中的密码不正确。重置我的正确密码后,它工作正常。


0
投票

该问题也可能是由于 Maven 和 JDK 的版本配置不正确造成的。

© www.soinside.com 2019 - 2024. All rights reserved.