pom.xml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  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>ruoyi-vue-plus</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>${revision}</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>ruoyi-generator</artifactId>
  13. <description>
  14. generator代码生成
  15. </description>
  16. <dependencies>
  17. <!--velocity代码生成使用模板 -->
  18. <dependency>
  19. <groupId>org.apache.velocity</groupId>
  20. <artifactId>velocity-engine-core</artifactId>
  21. </dependency>
  22. <!-- 通用工具-->
  23. <dependency>
  24. <groupId>com.ruoyi</groupId>
  25. <artifactId>ruoyi-common</artifactId>
  26. </dependency>
  27. </dependencies>
  28. </project>