pom.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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>cn.kdan.compdf</groupId>
  8. <artifactId>background</artifactId>
  9. <version>0.0.1</version>
  10. </parent>
  11. <artifactId>background-mybatis</artifactId>
  12. <description>公共Mybatis模块</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>cn.kdan.compdf</groupId>
  16. <artifactId>background-common</artifactId>
  17. <version>0.0.1</version>
  18. </dependency>
  19. <!--mysql-->
  20. <dependency>
  21. <groupId>mysql</groupId>
  22. <artifactId>mysql-connector-java</artifactId>
  23. </dependency>
  24. <!--mybatis plus-->
  25. <dependency>
  26. <groupId>com.baomidou</groupId>
  27. <artifactId>mybatis-plus-boot-starter</artifactId>
  28. <version>${mybatis.plus.version}</version>
  29. </dependency>
  30. </dependencies>
  31. </project>