pom.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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>tr-plugins</artifactId>
  7. <groupId>cn.tr</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <version>${revision}</version>
  12. <artifactId>tr-spring-boot-starter-plugin-mp-enhance-actable</artifactId>
  13. <description>和mybatis结合实现自动建表</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.gitee.sunchenbin.mybatis.actable</groupId>
  17. <artifactId>mybatis-enhance-actable</artifactId>
  18. <version>1.5.0.RELEASE</version>
  19. <exclusions>
  20. <exclusion>
  21. <artifactId>mybatis-plus-annotation</artifactId>
  22. <groupId>com.baomidou</groupId>
  23. </exclusion>
  24. </exclusions>
  25. </dependency>
  26. <dependency>
  27. <groupId>cn.tr</groupId>
  28. <artifactId>tr-spring-boot-starter-plugin-web</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>cn.tr</groupId>
  32. <artifactId>tr-spring-boot-starter-plugin-mybatis</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>cn.tr</groupId>
  36. <artifactId>tr-spring-boot-starter-plugin-test</artifactId>
  37. <scope>test</scope>
  38. <exclusions>
  39. <exclusion>
  40. <groupId>org.junit.vintage</groupId>
  41. <artifactId>junit-vintage-engine</artifactId>
  42. </exclusion>
  43. </exclusions>
  44. </dependency>
  45. </dependencies>
  46. </project>