pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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>io.github.minliuhua</groupId>
  8. <artifactId>warm-flow-mybatis-plus</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>warm-flow-mybatis-plus-sb-starter</artifactId>
  12. <description>warm-flow orm为mybatis-plus的springboot starter</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>io.github.minliuhua</groupId>
  16. <artifactId>warm-flow-mybatis-plus-core</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-configuration-processor</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.baomidou</groupId>
  24. <artifactId>mybatis-plus-boot-starter</artifactId>
  25. <version>${mybatis-plus.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework</groupId>
  29. <artifactId>spring-tx</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework</groupId>
  33. <artifactId>spring-context</artifactId>
  34. </dependency>
  35. </dependencies>
  36. </project>