pom.xml 874 B

12345678910111213141516171819202122232425
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>cn.iocoder.boot</groupId>
  8. <artifactId>yudao</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>yudao-module-guide</artifactId>
  12. <packaging>pom</packaging>
  13. <name>${project.artifactId}</name>
  14. <description>
  15. guide模块,主要实现 导游、用户、旅程 等功能。
  16. </description>
  17. <modules>
  18. <module>yudao-module-guide-api</module>
  19. <module>yudao-module-guide-biz</module>
  20. <module>yudao-module-guide-statistics-biz</module>
  21. </modules>
  22. </project>