swagger maven依赖idea找不到,central库里能找到,idea添加失败

之前lombok,junit都是能加上的,swagger就加不上了。

提示:

Dependency 'com.spring4all:swagger-spring-boot-starter:1.9.1.RELEASE' not found 

查mvnrepository.com,Spring Boot Starter Swagger是在central存储的,于是去central查了,https://repo.maven.apache.org/maven2/com/spring4all/swagger-spring-boot-starter/ 能找到对应的包,可是用以下代码添加依赖一直说找不到。

<dependency>
      <groupId>com.spring4all</groupId>
      <artifactId>swagger-spring-boot-starter</artifactId>
      <version>1.9.1.RELEASE</version>
</dependency>

File -> Project Structure -> Libraries ->点击依赖列表左上角的“+” -> from Maven... -> 输入swagger查找试试
图片说明

楼主 这个问题你解决了吗?我也遇上这个问题了