pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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.dfs</groupId>
  7. <artifactId>dfs-api</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>11</maven.compiler.source>
  11. <maven.compiler.target>11</maven.compiler.target>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>cn.reghao.jutil</groupId>
  16. <artifactId>jdk</artifactId>
  17. <version>1.0.0-SNAPSHOT</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.projectlombok</groupId>
  21. <artifactId>lombok</artifactId>
  22. <version>1.18.6</version>
  23. <optional>true</optional>
  24. </dependency>
  25. <dependency>
  26. <groupId>javax.validation</groupId>
  27. <artifactId>validation-api</artifactId>
  28. <version>2.0.1.Final</version>
  29. </dependency>
  30. </dependencies>
  31. <distributionManagement>
  32. <repository>
  33. <id>maven-local-hosted</id>
  34. <url>http://nexus.reghao.cn/repository/maven-local-hosted/</url>
  35. </repository>
  36. </distributionManagement>
  37. </project>