pom.xml 1.1 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>top.continew</groupId>
  7. <artifactId>continew-admin</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <groupId>top.continew</groupId>
  11. <artifactId>continew-module-coin-core</artifactId>
  12. <version>${revision}</version>
  13. <name>continew-module-coin-core</name>
  14. <description>continew-module-coin-core</description>
  15. <properties>
  16. <!-- 项目版本号 -->
  17. <revision>3.4.0</revision>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>top.continew</groupId>
  22. <artifactId>continew-common</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.baomidou</groupId>
  26. <artifactId>mybatis-plus-generator</artifactId>
  27. <version>3.5.8</version>
  28. </dependency>
  29. </dependencies>
  30. </project>