| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>tr-plugins</artifactId>
- <groupId>cn.tr</groupId>
- <version>0.0.9</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>tr-spring-boot-starter-plugin-test</artifactId>
- <dependencies>
- <dependency>
- <groupId>cn.tr</groupId>
- <artifactId>tr-framework</artifactId>
- </dependency>
- <!-- Test 测试相关 -->
- <dependency>
- <groupId>org.mockito</groupId>
- <artifactId>mockito-inline</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- </dependency>
- <!--<dependency>-->
- <!--<groupId>org.redisson</groupId>-->
- <!--<artifactId>redisson-spring-boot-starter</artifactId>-->
- <!--</dependency>-->
- <dependency>
- <groupId>uk.co.jemos.podam</groupId>
- <artifactId>podam</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- <exclusions>
- <exclusion>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-logging</artifactId>
- </exclusion>
- </exclusions>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </project>
|