pom.xml 1.1 KB

12345678910111213141516171819202122232425262728
  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. <!-- <relativePath>../../pom.xml</relativePath>-->
  11. </parent>
  12. <artifactId>yudao-module-as</artifactId>
  13. <modules>
  14. <module>yudao-module-as-api</module>
  15. <module>yudao-module-as-biz</module>
  16. </modules>
  17. <packaging>pom</packaging>
  18. <name>${project.artifactId}</name>
  19. <url>http://maven.apache.org</url>
  20. <description>
  21. as模块,主要实现家庭困难认定、助学奖金等功能。
  22. </description>
  23. <properties>
  24. <maven.compiler.source>8</maven.compiler.source>
  25. <maven.compiler.target>8</maven.compiler.target>
  26. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  27. </properties>
  28. </project>