pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.xyzc</groupId>
  8. <artifactId>xyzc-common</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>xyzc-common-mybatis</artifactId>
  12. <description>
  13. myabtis 的插件
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.xyzc</groupId>
  18. <artifactId>xyzc-common-core</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.xyzc</groupId>
  22. <artifactId>xyzc-common-web</artifactId>
  23. </dependency>
  24. <!-- dynamic-datasource 多数据源-->
  25. <dependency>
  26. <groupId>com.baomidou</groupId>
  27. <artifactId>dynamic-datasource-spring-boot3-starter</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.baomidou</groupId>
  31. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  32. </dependency>
  33. <!-- sql性能分析插件 -->
  34. <dependency>
  35. <groupId>p6spy</groupId>
  36. <artifactId>p6spy</artifactId>
  37. </dependency>
  38. </dependencies>
  39. </project>