123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
-
- <artifactId>spring5-admin</artifactId>
- <packaging>jar</packaging>
- <name>${project.artifactId}</name>
- <description>spring5 demo</description>
-
- <!-- Spring Boot 启动父依赖 -->
- <parent>
- <groupId>com.yaozhitech</groupId>
- <artifactId>spring5</artifactId>
- <version>0.1.0</version>
- </parent>
- <dependencies>
- <!-- Spring Boot Redis 依赖 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-redis</artifactId>
- </dependency>
-
- <!--mybatis plus依赖包-->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>3.1.0</version>
- </dependency>
- <dependency>
- <groupId>org.mybatis</groupId>
- <artifactId>mybatis-spring</artifactId>
- <version>2.0.0</version>
- </dependency>
-
- <!-- <dependency> -->
- <!-- <groupId>com.alicp.jetcache</groupId> -->
- <!-- <artifactId>jetcache-starter-redis</artifactId> -->
- <!-- <version>2.6.0.M3</version> -->
- <!-- </dependency> -->
- <!-- <dependency> -->
- <!-- <groupId>com.alicp.jetcache</groupId> -->
- <!-- <artifactId>jetcache-redis-lettuce</artifactId> -->
- <!-- <version>2.6.0.M3</version> -->
- <!-- </dependency> -->
-
-
- <!--swagger文档-->
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger-ui</artifactId>
- <version>2.9.2</version>
- </dependency>
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger2</artifactId>
- <version>2.9.2</version>
- </dependency>
-
- <!--数据库-->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- </dependency>
-
- <!-- Spring test 依赖 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
-
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
-
- <!-- 集成wireMock来实现mock请求响应。wireMock会自动构建一个虚拟远程服务 -->
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-contract-wiremock</artifactId>
- <scope>test</scope>
- </dependency>
-
- <!-- 提供打包预定义数据服务 -->
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-contract-stub-runner</artifactId>
- <scope>test</scope>
- </dependency>
-
- <!-- 自动生成单元测试代码 -->
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-contract-verifier</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.github.tomakehurst</groupId>
- <artifactId>wiremock-standalone</artifactId>
- <scope>test</scope>
- </dependency>
-
- <dependency>
- <groupId>com.yaozhitech</groupId>
- <artifactId>spring5-auth-client</artifactId>
- <version>0.1.0</version>
- </dependency>
- </dependencies>
- </project>
|