pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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>centreproject</artifactId>
  7. <groupId>com.centreproject</groupId>
  8. <version>3.9.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>centreproject-system</artifactId>
  12. <description>
  13. system
  14. </description>
  15. <dependencies>
  16. <!-- 通用工具-->
  17. <dependency>
  18. <groupId>com.centreproject</groupId>
  19. <artifactId>centreproject-common</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.projectlombok</groupId>
  23. <artifactId>lombok</artifactId>
  24. <scope>provided</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.xuxueli</groupId>
  28. <artifactId>xxl-job-core</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.baomidou</groupId>
  32. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.baomidou</groupId>
  36. <artifactId>mybatis-plus-boot-starter</artifactId>
  37. <exclusions>
  38. <!-- 防止旧版 MyBatis 冲突 -->
  39. <exclusion>
  40. <groupId>org.mybatis</groupId>
  41. <artifactId>mybatis</artifactId>
  42. </exclusion>
  43. <exclusion>
  44. <groupId>org.mybatis</groupId>
  45. <artifactId>mybatis-spring</artifactId>
  46. </exclusion>
  47. </exclusions>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.mybatis</groupId>
  51. <artifactId>mybatis</artifactId>
  52. <version>3.5.16</version>
  53. <scope>compile</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.github.jsqlparser</groupId>
  57. <artifactId>jsqlparser</artifactId>
  58. <version>4.9</version> <!-- 与PageHelper 1.4.7兼容的版本 -->
  59. </dependency>
  60. <dependency>
  61. <groupId>com.fasterxml.jackson.core</groupId>
  62. <artifactId>jackson-annotations</artifactId>
  63. </dependency>
  64. </dependencies>
  65. </project>