pom.xml 776 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. <parent>
  6. <artifactId>yudao</artifactId>
  7. <groupId>cn.iocoder.boot</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>yudao-module-customer</artifactId>
  12. <packaging>pom</packaging>
  13. <name>${project.artifactId}</name>
  14. <description>
  15. 客户大模块
  16. </description>
  17. <modules>
  18. <module>yudao-module-customer-api</module>
  19. <module>yudao-module-customer-biz</module>
  20. </modules>
  21. </project>