.flattened-pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.jt.cloud</groupId>
  6. <artifactId>jt-spring-boot-starter-test</artifactId>
  7. <version>2.6.1-SNAPSHOT</version>
  8. <name>jt-spring-boot-starter-test</name>
  9. <description>测试组件,用于单元测试、集成测试</description>
  10. <dependencies>
  11. <dependency>
  12. <groupId>com.jt.cloud</groupId>
  13. <artifactId>jt-common</artifactId>
  14. <version>2.6.1-SNAPSHOT</version>
  15. <scope>compile</scope>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.jt.cloud</groupId>
  19. <artifactId>jt-spring-boot-starter-mybatis</artifactId>
  20. <version>2.6.1-SNAPSHOT</version>
  21. <scope>compile</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.jt.cloud</groupId>
  25. <artifactId>jt-spring-boot-starter-redis</artifactId>
  26. <version>2.6.1-SNAPSHOT</version>
  27. <scope>compile</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.mockito</groupId>
  31. <artifactId>mockito-inline</artifactId>
  32. <version>5.2.0</version>
  33. <scope>compile</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-test</artifactId>
  38. <version>3.4.5</version>
  39. <scope>compile</scope>
  40. <exclusions>
  41. <exclusion>
  42. <artifactId>asm</artifactId>
  43. <groupId>org.ow2.asm</groupId>
  44. </exclusion>
  45. <exclusion>
  46. <artifactId>mockito-core</artifactId>
  47. <groupId>org.mockito</groupId>
  48. </exclusion>
  49. </exclusions>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.h2database</groupId>
  53. <artifactId>h2</artifactId>
  54. <version>2.3.232</version>
  55. <scope>compile</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.github.fppt</groupId>
  59. <artifactId>jedis-mock</artifactId>
  60. <version>1.1.4</version>
  61. <scope>compile</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>uk.co.jemos.podam</groupId>
  65. <artifactId>podam</artifactId>
  66. <version>8.0.2.RELEASE</version>
  67. <scope>compile</scope>
  68. </dependency>
  69. </dependencies>
  70. <repositories>
  71. <repository>
  72. <id>huaweicloud</id>
  73. <name>huawei</name>
  74. <url>https://mirrors.huaweicloud.com/repository/maven/</url>
  75. </repository>
  76. <repository>
  77. <id>aliyunmaven</id>
  78. <name>aliyun</name>
  79. <url>https://maven.aliyun.com/repository/public</url>
  80. </repository>
  81. <repository>
  82. <snapshots>
  83. <enabled>false</enabled>
  84. </snapshots>
  85. <id>spring-milestones</id>
  86. <name>Spring Milestones</name>
  87. <url>https://repo.spring.io/milestone</url>
  88. </repository>
  89. <repository>
  90. <releases>
  91. <enabled>false</enabled>
  92. </releases>
  93. <id>spring-snapshots</id>
  94. <name>Spring Snapshots</name>
  95. <url>https://repo.spring.io/snapshot</url>
  96. </repository>
  97. </repositories>
  98. </project>