pom.xml 1.2 KB

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