pom.xml 896 B

1234567891011121314151617181920212223242526
  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. <modules>
  12. <module>yudao-module-expense-api</module>
  13. <module>yudao-module-expense-biz</module>
  14. <module>yudao-module-cash-api</module>
  15. <module>yudao-module-cash-biz</module>
  16. </modules>
  17. <artifactId>yudao-module-finance</artifactId>
  18. <packaging>pom</packaging>
  19. <name>${project.artifactId}</name>
  20. <description>
  21. 这里我们放财务系统的功能模块。
  22. </description>
  23. </project>