pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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>phototherapy</artifactId>
  7. <groupId>cn.tr</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>tr-framework</artifactId>
  12. <version>${revision}</version>
  13. <description>系统内置的核心框架功能</description>
  14. <dependencies>
  15. <!-- 分页工具 -->
  16. <dependency>
  17. <groupId>com.github.pagehelper</groupId>
  18. <artifactId>pagehelper-spring-boot-starter</artifactId>
  19. <scope>provided</scope>
  20. </dependency>
  21. <!-- Hutool工具库 -->
  22. <dependency>
  23. <groupId>cn.hutool</groupId>
  24. <artifactId>hutool-core</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>cn.hutool</groupId>
  28. <artifactId>hutool-db</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>cn.hutool</groupId>
  32. <artifactId>hutool-crypto</artifactId>
  33. </dependency>
  34. <!-- <dependency>-->
  35. <!-- <groupId>org.springframework.boot</groupId>-->
  36. <!-- <artifactId>spring-boot-starter-data-redis</artifactId>-->
  37. <!-- <scope>provided</scope>-->
  38. <!-- </dependency>-->
  39. <dependency>
  40. <groupId>org.redisson</groupId>
  41. <artifactId>redisson-spring-boot-starter</artifactId>
  42. </dependency>
  43. <!-- 参数校验 -->
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-validation</artifactId>
  47. <exclusions>
  48. <!-- 排除默认的日志实现,使用log4j2 -->
  49. <exclusion>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-logging</artifactId>
  52. </exclusion>
  53. </exclusions>
  54. </dependency>
  55. <!-- Lombok -->
  56. <dependency>
  57. <groupId>org.projectlombok</groupId>
  58. <artifactId>lombok</artifactId>
  59. </dependency>
  60. <!-- 测试依赖 -->
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-test</artifactId>
  64. <scope>test</scope>
  65. <exclusions>
  66. <!-- 排除默认的日志实现 -->
  67. <exclusion>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-logging</artifactId>
  70. </exclusion>
  71. <!-- 排除logback实现 -->
  72. <exclusion>
  73. <groupId>ch.qos.logback</groupId>
  74. <artifactId>logback-classic</artifactId>
  75. </exclusion>
  76. </exclusions>
  77. </dependency>
  78. <!-- Log4j2日志实现 -->
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-log4j2</artifactId>
  82. <exclusions>
  83. <exclusion>
  84. <groupId>org.apache.logging.log4j</groupId>
  85. <artifactId>log4j-to-slf4j</artifactId>
  86. </exclusion>
  87. </exclusions>
  88. </dependency>
  89. <!-- IP地址库 -->
  90. <dependency>
  91. <groupId>org.lionsoul</groupId>
  92. <artifactId>ip2region</artifactId>
  93. </dependency>
  94. <!-- Web支持 -->
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-web</artifactId>
  98. <scope>provided</scope>
  99. <exclusions>
  100. <!-- 排除默认的日志实现 -->
  101. <exclusion>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-starter-logging</artifactId>
  104. </exclusion>
  105. </exclusions>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.fasterxml.jackson.core</groupId>
  109. <artifactId>jackson-databind</artifactId>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.apache.commons</groupId>
  113. <artifactId>commons-lang3</artifactId>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.squareup.okhttp3</groupId>
  117. <artifactId>okhttp</artifactId>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.springdoc</groupId>
  121. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.github.xiaoymin</groupId>
  125. <artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
  126. <exclusions>
  127. <exclusion>
  128. <groupId>org.springdoc</groupId>
  129. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  130. </exclusion>
  131. </exclusions>
  132. </dependency>
  133. <dependency>
  134. <groupId>com.baomidou</groupId>
  135. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  136. <scope>provided</scope>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.springframework.data</groupId>
  140. <artifactId>spring-data-redis</artifactId>
  141. </dependency>
  142. <dependency>
  143. <groupId>cn.dev33</groupId>
  144. <artifactId>sa-token-core</artifactId>
  145. <scope>provided</scope>
  146. </dependency>
  147. </dependencies>
  148. </project>