pom.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>com.aizuda</groupId>
  6. <artifactId>aizuda-framework</artifactId>
  7. <version>${revision}</version>
  8. <relativePath>../pom.xml</relativePath>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>aizuda-generator</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.baomidou</groupId>
  15. <artifactId>mybatis-plus-generator</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.apache.velocity</groupId>
  19. <artifactId>velocity-engine-core</artifactId>
  20. <version>2.3</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.baomidou</groupId>
  24. <artifactId>mybatis-plus-core</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.aizuda</groupId>
  28. <artifactId>aizuda-core</artifactId>
  29. </dependency>
  30. </dependencies>
  31. </project>