pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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-modules</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-module-gen</artifactId>
  13. <description>代码生成器</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>cn.tr</groupId>
  17. <artifactId>tr-framework</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>cn.tr</groupId>
  21. <artifactId>tr-spring-boot-starter-plugin-mybatis</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>cn.tr</groupId>
  25. <artifactId>tr-spring-boot-starter-plugin-doc</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>cn.tr</groupId>
  29. <artifactId>tr-spring-boot-starter-plugin-web</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.ibeetl</groupId>
  33. <artifactId>beetl-framework-starter</artifactId>
  34. </dependency>
  35. </dependencies>
  36. </project>