pom.xml 1.2 KB

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