maven 无法识别 Swagger 依赖

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

我正在尝试将 springfox/swagger 添加到我的 Spring Boot 应用程序中,但是当添加到 pom 文件中时,maven 无法识别依赖项的版本。不幸的是我找不到其背后的原因。这是我的 pom 文件的片段:

    <dependency>
        <groupId>io.springfox</groupId>
        <artifactId>springfox-swagger2</artifactId>
        <version>2.9.2</version>
    </dependency>
    <dependency>
        <groupId>io.springfox</groupId>
        <artifactId>springfox-swagger-ui</artifactId>
        <version>2.0.2</version>
    </dependency>

版本被标记为红色,因为 Maven 无法识别。这种行为背后的原因可能是什么? 我正在使用 maven 3.3.9.

java maven swagger swagger-ui springfox
2个回答
4
投票

这些工件存在于 Maven 存储库中,因此您应该能够将它们添加为依赖项。造成此行为的可能原因有以下三种:

  1. 您已在
    pom.xml
    中定义了自定义存储库。
  2. 您的 IDE 中有一个自定义的 Maven 配置。
  3. 您已经在
    Nexus
    maven 配置文件中定义了自定义存储库列表(如果您使用
    settings.xml
    之类的内容来提供库,则可能会发生这种情况)。

我还检查了Springfox Reference,你可以直接添加这个自定义存储库:

<repositories>
    <repository>
      <id>jcenter-snapshots</id>
      <name>jcenter</name>
      <url>https://jcenter.bintray.com/</url>
    </repository>
</repositories>

0
投票

如果使用 Intellij,您可以尝试“项目文件夹”>“Maven”>“重新加载项目”。这为我解决了同样的问题。

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