未解决的依赖关系:io.swagger:maven 中的 swagger-core:jar

unresolved dependency: io.swagger:swagger-core:jar in maven

我在尝试构建 github 项目时遇到以下错误:

整个 pom 如下所示:

<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>org.nmdp</groupId>
<artifactId>hml-fhir</artifactId>
<packaging>jar</packaging>
<version>2.0.0-SNAPSHOT</version>

<properties>
    <swagger-codegen-version>2.2.2</swagger-codegen-version>
    <maven-compiler-plugin-version>3.5.1</maven-compiler-plugin-version>
    <mapstruct-core-version>1.2.0.Beta1</mapstruct-core-version>
    <maven-clean-plugin-version>2.6.1</maven-clean-plugin-version>
    <mongodb-version>3.4.0</mongodb-version>
    <log4j-version>1.2.17</log4j-version>
    <model-mapper-version>0.7.5</model-mapper-version>
    <nmdp-models-version>2.0.0</nmdp-models-version>
    <gson-version>2.8.0</gson-version>
    <commons-io-version>1.4</commons-io-version>
    <joda-time-version>2.9.9</joda-time-version>
    <json-version>20160212</json-version>
    <commons-lang-version>3.1</commons-lang-version>

    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    <java.version>1.8</java.version>
</properties>

<build>
    <sourceDirectory>src/main/java</sourceDirectory>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>${maven-compiler-plugin-version}</version>
            <configuration>
                <source>${java.version}</source>
                <target>${java.version}</target>
                <annotationProcessorPaths>
                    <path>
                        <groupId>org.mapstruct</groupId>
                        <artifactId>mapstruct-processor</artifactId>
                        <version>${mapstruct-core-version}</version>
                    </path>
                </annotationProcessorPaths>
            </configuration>
        </plugin>
        <plugin>
            <artifactId>maven-clean-plugin</artifactId>
            <version>${maven-clean-plugin-version}</version>
            <configuration>
                <excludeDefaultDirectories>true</excludeDefaultDirectories>
                <filesets>
                    <fileset>
                        <directory>${project.build.directory}</directory>
                        <excludes>
                            <exclude>generated-sources/swagger/.swagger-codegen-ignore</exclude>
                        </excludes>
                    </fileset>
                </filesets>
            </configuration>
        </plugin>
    </plugins>
</build>

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.mongodb</groupId>
            <artifactId>mongo-java-driver</artifactId>
            <version>${mongodb-version}</version>
        </dependency>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>${log4j-version}</version>
        </dependency>
        <dependency>
            <groupId>io.swagger</groupId>
            <artifactId>swagger-core</artifactId>
            <version>${swagger-version}</version>
        </dependency>
        <dependency>
            <groupId>io.swagger</groupId>
            <artifactId>swagger-annotations</artifactId>
            <version>${swagger-version}</version>
        </dependency>
        <dependency>
            <groupId>org.json</groupId>
            <artifactId>json</artifactId>
        </dependency>
        <dependency>
            <groupId>org.mapstruct</groupId>
            <artifactId>mapstruct</artifactId>
            <version>${mapstruct-core-version}</version>
        </dependency>
        <dependency>
            <groupId>org.modelmapper</groupId>
            <artifactId>modelmapper</artifactId>
            <version>${model-mapper-version}</version>
        </dependency>
        <dependency>
            <groupId>org.nmdp</groupId>
            <artifactId>service-hml-fhir-converter-models</artifactId>
            <version>${nmdp-models-version}</version>
        </dependency>
        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
            <version>${gson-version}</version>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>${commons-io-version}</version>
        </dependency>
        <dependency>
            <groupId>joda-time</groupId>
            <artifactId>joda-time</artifactId>
            <version>${joda-time-version}</version>
        </dependency>
        <dependency>
            <groupId>org.json</groupId>
            <artifactId>json</artifactId>
            <version>${json-version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>${commons-lang-version}</version>
        </dependency>
    </dependencies>
</dependencyManagement>

<dependencies>
    <dependency>
        <groupId>org.mongodb</groupId>
        <artifactId>mongo-java-driver</artifactId>
    </dependency>
    <dependency>
        <groupId>log4j</groupId>
        <artifactId>log4j</artifactId>
    </dependency>
    <dependency>
        <groupId>org.mapstruct</groupId>
        <artifactId>mapstruct</artifactId>
    </dependency>
    <dependency>
        <groupId>org.modelmapper</groupId>
        <artifactId>modelmapper</artifactId>
    </dependency>
    <dependency>
        <groupId>com.github.nmdp-bioinformatics</groupId>       
        <artifactId>service-hml-fhir-converter-models</artifactId>
        <version>-SNAPSHOT</version>                              //ONLY ERROR APPEARS HERE
    </dependency>
    <dependency>
        <groupId>com.google.code.gson</groupId>
        <artifactId>gson</artifactId>
    </dependency>
    <dependency>
        <groupId>commons-io</groupId>
        <artifactId>commons-io</artifactId>
    </dependency>
    <dependency>
        <groupId>joda-time</groupId>
        <artifactId>joda-time</artifactId>
    </dependency>
    <dependency>
        <groupId>org.json</groupId>
        <artifactId>json</artifactId>
    </dependency>
    <dependency>
        <groupId>org.apache.commons</groupId>
        <artifactId>commons-lang3</artifactId>
    </dependency>
</dependencies>

我在依赖方面没有任何经验,但我从这个 post 中了解了一些基础知识: Differences between dependencyManagement and dependencies in Maven.

我认为这里又遇到了这个问题,但我无法将解决方案转化为我自己的问题:

maven window 看起来像这样:

更准确地说,似乎只有一个依赖项有问题:

我尝试从 dependencyManager 中手动复制粘贴这两个依赖项,但没有成功。 我也尝试删除它们,仍然没有解决问题,以防对 dependencyManager 的依赖就足够了。

如您所见,我也在使用 jitpack.io 获取 github 中另一个项目的依赖项。不确定这是否是最佳方法。

究竟是什么错误?我哪里理解错了,我该如何纠正?

${swagger-version} 似乎在属性标签中丢失但使用了两次。

尝试将此 属性 设置为特定版本

或从使用的两个依赖项中删除它。 (如果有父 pom 或其他一些 jar 在构建项目时会被 maven 查找版本,则删除它可能会起作用)