pom.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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>redis</module>
  14. </modules>
  15. <properties>
  16. <maven.compiler.source>11</maven.compiler.source>
  17. <maven.compiler.target>11</maven.compiler.target>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.google.code.gson</groupId>
  22. <artifactId>gson</artifactId>
  23. <version>2.8.5</version>
  24. </dependency>
  25. </dependencies>
  26. <distributionManagement>
  27. <repository>
  28. <id>local-maven</id>
  29. <url>http://nexus.alpha.iquizoo.com/repository/maven-local/</url>
  30. </repository>
  31. <!--<repository>
  32. <id>tnb-maven-local</id>
  33. <url>http://nexus.reghao.cn/repository/tnb-maven-local/</url>
  34. </repository>-->
  35. </distributionManagement>
  36. </project>