Cannot resolve io.swagger:swagger-annotations:3.8.6
时间: 2023-11-27 21:42:45 浏览: 230
Android添加glide库报错Error: Failed to resolve: com.android.support:support-annotations:26.0.2的解决
这个错误提示是因为你的项目中没有引入io.swagger:swagger-annotations:3.8.6的依赖包。你可以在pom.xml文件中添加以下依赖来解决这个问题:
```
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-annotations</artifactId>
<version>3.8.6</version>
</dependency>
```
这个依赖包提供了Swagger注解的支持,可以让你在代码中使用Swagger注解。添加了这个依赖后,你就可以解决"Cannot resolve io.swagger:swagger-annotations:3.8.6"的问题了。
阅读全文