pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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. <!-- 参数校验 -->
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-validation</artifactId>
  43. <exclusions>
  44. <!-- 排除默认的日志实现,使用log4j2 -->
  45. <exclusion>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-logging</artifactId>
  48. </exclusion>
  49. </exclusions>
  50. </dependency>
  51. <!-- Lombok -->
  52. <dependency>
  53. <groupId>org.projectlombok</groupId>
  54. <artifactId>lombok</artifactId>
  55. </dependency>
  56. <!-- 测试依赖 -->
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-test</artifactId>
  60. <scope>test</scope>
  61. <exclusions>
  62. <!-- 排除默认的日志实现 -->
  63. <exclusion>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-logging</artifactId>
  66. </exclusion>
  67. <!-- 排除logback实现 -->
  68. <exclusion>
  69. <groupId>ch.qos.logback</groupId>
  70. <artifactId>logback-classic</artifactId>
  71. </exclusion>
  72. </exclusions>
  73. </dependency>
  74. <!-- Log4j2日志实现 -->
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-log4j2</artifactId>
  78. <exclusions>
  79. <exclusion>
  80. <groupId>org.apache.logging.log4j</groupId>
  81. <artifactId>log4j-to-slf4j</artifactId>
  82. </exclusion>
  83. </exclusions>
  84. </dependency>
  85. <!-- IP地址库 -->
  86. <dependency>
  87. <groupId>org.lionsoul</groupId>
  88. <artifactId>ip2region</artifactId>
  89. </dependency>
  90. <!-- Web支持 -->
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-web</artifactId>
  94. <scope>provided</scope>
  95. <exclusions>
  96. <!-- 排除默认的日志实现 -->
  97. <exclusion>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-starter-logging</artifactId>
  100. </exclusion>
  101. </exclusions>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.fasterxml.jackson.core</groupId>
  105. <artifactId>jackson-databind</artifactId>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.apache.commons</groupId>
  109. <artifactId>commons-lang3</artifactId>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.squareup.okhttp3</groupId>
  113. <artifactId>okhttp</artifactId>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.springdoc</groupId>
  117. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.github.xiaoymin</groupId>
  121. <artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
  122. <exclusions>
  123. <exclusion>
  124. <groupId>org.springdoc</groupId>
  125. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  126. </exclusion>
  127. </exclusions>
  128. </dependency>
  129. <dependency>
  130. <groupId>com.baomidou</groupId>
  131. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  132. <scope>provided</scope>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.springframework.data</groupId>
  136. <artifactId>spring-data-redis</artifactId>
  137. </dependency>
  138. </dependencies>
  139. </project>