pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>tr-plugins</artifactId>
  7. <groupId>cn.tr</groupId>
  8. <version>0.0.9</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>tr-spring-boot-starter-plugin-test</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>cn.tr</groupId>
  15. <artifactId>tr-framework</artifactId>
  16. </dependency>
  17. <!-- Test 测试相关 -->
  18. <dependency>
  19. <groupId>org.mockito</groupId>
  20. <artifactId>mockito-inline</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-test</artifactId>
  25. </dependency>
  26. <!--<dependency>-->
  27. <!--<groupId>org.redisson</groupId>-->
  28. <!--<artifactId>redisson-spring-boot-starter</artifactId>-->
  29. <!--</dependency>-->
  30. <dependency>
  31. <groupId>uk.co.jemos.podam</groupId>
  32. <artifactId>podam</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-web</artifactId>
  37. <exclusions>
  38. <exclusion>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-logging</artifactId>
  41. </exclusion>
  42. </exclusions>
  43. <scope>test</scope>
  44. </dependency>
  45. </dependencies>
  46. </project>