pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>tr-spring-boot-starter-plugin-mybatis</artifactId>
  12. <version>${revision}</version>
  13. <packaging>jar</packaging>
  14. <description>mybatis-plus插件配置</description>
  15. <!-- 在 cn-spring-boot-starter-plugin-mybatis/pom.xml 中优化依赖范围 -->
  16. <dependencies>
  17. <!-- 核心框架依赖 -->
  18. <dependency>
  19. <groupId>cn.tr</groupId>
  20. <artifactId>tr-framework</artifactId>
  21. </dependency>
  22. <!-- 分页工具 -->
  23. <dependency>
  24. <groupId>com.github.pagehelper</groupId>
  25. <artifactId>pagehelper-spring-boot-starter</artifactId>
  26. </dependency>
  27. <!-- MyBatis Plus相关依赖 -->
  28. <dependency>
  29. <groupId>com.baomidou</groupId>
  30. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.mybatis</groupId>
  34. <artifactId>mybatis</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.baomidou</groupId>
  38. <artifactId>mybatis-plus-jsqlparser</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-test</artifactId>
  43. <scope>test</scope>
  44. <exclusions>
  45. <!-- 排除默认的日志实现 -->
  46. <exclusion>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-logging</artifactId>
  49. </exclusion>
  50. <!-- 排除logback实现 -->
  51. <exclusion>
  52. <groupId>ch.qos.logback</groupId>
  53. <artifactId>logback-classic</artifactId>
  54. </exclusion>
  55. </exclusions>
  56. </dependency>
  57. </dependencies>
  58. </project>