pom.xml 777 B

123456789101112131415161718192021
  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>top.imwork</groupId>
  8. <artifactId>imwork-plus</artifactId>
  9. <version>2025.11.1.0</version>
  10. </parent>
  11. <groupId>top.imwork.exercise</groupId>
  12. <artifactId>imwork-exercise</artifactId>
  13. <properties>
  14. <maven.compiler.source>25</maven.compiler.source>
  15. <maven.compiler.target>25</maven.compiler.target>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18. </project>