pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.persagy</groupId>
  6. <artifactId>apm-parent</artifactId>
  7. <version>3.0.0</version>
  8. <relativePath>../apm-parent</relativePath>
  9. </parent>
  10. <artifactId>apm-mybatis</artifactId>
  11. <distributionManagement>
  12. <repository>
  13. <id>persagy</id>
  14. <name>releases Repository</name>
  15. <url>http://47.93.132.139:8081/nexus/content/repositories/persagy/</url>
  16. </repository>
  17. </distributionManagement>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.persagy</groupId>
  21. <artifactId>apm-common</artifactId>
  22. </dependency>
  23. <!-- mybatisPlus相关的依赖 start -->
  24. <!-- mybatisPlus -->
  25. <dependency>
  26. <groupId>com.baomidou</groupId>
  27. <artifactId>mybatis-plus-boot-starter</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.baomidou</groupId>
  31. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  32. <version>3.3.2</version>
  33. </dependency>
  34. </dependencies>
  35. </project>