...
|
...
|
@@ -19,6 +19,7 @@ |
|
|
<spring-cloud.version>Greenwich.BUILD-SNAPSHOT</spring-cloud.version>
|
|
|
<fastjson_version>1.2.28</fastjson_version>
|
|
|
<lombok_sersion>1.18.6</lombok_sersion>
|
|
|
<swagger2_version>2.9.2</swagger2_version>
|
|
|
</properties>
|
|
|
|
|
|
<dependencies>
|
...
|
...
|
@@ -85,8 +86,54 @@ |
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
|
|
|
<!--spring boot-->
|
|
|
<!-- tools-->
|
|
|
<!--集成swagger2,下面两个spring的配置解决springboot包 与swagger2的包冲突问题,生产部署的时候记得要去掉此swagger2的配置,开发环境开启-->
|
|
|
<!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.plugin</groupId>
|
|
|
<artifactId>spring-plugin-core</artifactId>
|
|
|
<version>1.2.0.RELEASE</version><!--$NO-MVN-MAN-VER$-->
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.plugin</groupId>
|
|
|
<artifactId>spring-plugin-metadata</artifactId>
|
|
|
<version>1.2.0.RELEASE</version><!--$NO-MVN-MAN-VER$-->
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>io.springfox</groupId>
|
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
|
<version>${swagger2_version}</version>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>org.springframework.plugin</groupId>
|
|
|
<artifactId>spring-plugin-core</artifactId>
|
|
|
</exclusion>
|
|
|
<exclusion>
|
|
|
<groupId>org.springframework.plugin</groupId>
|
|
|
<artifactId>spring-plugin-metadata</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 -->
|
|
|
<dependency>
|
|
|
<groupId>io.springfox</groupId>
|
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
|
<version>${swagger2_version}</version>
|
|
|
<!--2.9.2集成的是M1的这两个包,跟现在用的Greenwich.BUILD-SNAPSHOT的版本的SPRING boot2的版本包有冲突。去掉-->
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>org.springframework.plugin</groupId>
|
|
|
<artifactId>spring-plugin-core</artifactId>
|
|
|
</exclusion>
|
|
|
<exclusion>
|
|
|
<groupId>org.springframework.plugin</groupId>
|
|
|
<artifactId>spring-plugin-metadata</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
<!--集成swagger2-->
|
|
|
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
|
|
|
<dependency>
|
|
|
<groupId>org.projectlombok</groupId>
|
...
|
...
|
|