pom.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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</version>
  10. <modules>
  11. <module>jdk</module>
  12. <module>tool</module>
  13. </modules>
  14. <properties>
  15. <maven.compiler.source>11</maven.compiler.source>
  16. <maven.compiler.target>11</maven.compiler.target>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.google.code.gson</groupId>
  21. <artifactId>gson</artifactId>
  22. <version>2.8.5</version>
  23. </dependency>
  24. </dependencies>
  25. <distributionManagement>
  26. <repository>
  27. <id>local-nexus</id>
  28. <url>http://nexus.alpha.iquizoo.com/repository/maven-releases/</url>
  29. </repository>
  30. </distributionManagement>
  31. </project>