移除 admin-core 默认引入的swagger相关依赖,用户需要时在项目中按需引入

This commit is contained in:
b2baccline
2020-07-10 20:33:13 +08:00
parent acf6b1167e
commit ae67e4cca6
2 changed files with 17 additions and 14 deletions

View File

@@ -29,20 +29,6 @@
<groupId>com.hccake</groupId>
<artifactId>ballcat-spring-boot-starter-storage</artifactId>
</dependency>
<!-- swagger 文档聚合 -->
<dependency>
<groupId>com.hccake</groupId>
<artifactId>ballcat-spring-boot-starter-swagger</artifactId>
</dependency>
<!-- swagger 增强版 ui -->
<dependency>
<groupId>com.github.xiaoymin</groupId>
<artifactId>knife4j-spring-ui</artifactId>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
</dependency>
<!--mybatis plus-->
<dependency>
<groupId>com.baomidou</groupId>

View File

@@ -46,6 +46,23 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!-- swagger 文档聚合 -->
<dependency>
<groupId>com.hccake</groupId>
<artifactId>ballcat-spring-boot-starter-swagger</artifactId>
</dependency>
<!-- swagger springfox ui -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
</dependency>
<!-- swagger 增强版 ui -->
<dependency>
<groupId>com.github.xiaoymin</groupId>
<artifactId>knife4j-spring-ui</artifactId>
</dependency>
</dependencies>