pom.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. <groupId>cn.reghao.jutil</groupId>
  7. <artifactId>jutil</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.0.0-SNAPSHOT</version>
  10. <modules>
  11. <module>jdk</module>
  12. <module>tool</module>
  13. <module>web</module>
  14. <module>media</module>
  15. </modules>
  16. <properties>
  17. <maven.compiler.source>11</maven.compiler.source>
  18. <maven.compiler.target>11</maven.compiler.target>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>com.google.code.gson</groupId>
  25. <artifactId>gson</artifactId>
  26. <version>2.8.5</version>
  27. </dependency>
  28. </dependencies>
  29. <distributionManagement>
  30. <repository>
  31. <id>maven-local-hosted</id>
  32. <url>http://nexus.reghao.cn/repository/maven-local-hosted/</url>
  33. </repository>
  34. </distributionManagement>
  35. </project>