pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. <parent>
  6. <artifactId>bnt</artifactId>
  7. <groupId>cn.reghao.bnt</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>common</artifactId>
  12. <version>1.0.0-SNAPSHOT</version>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  16. <maven.compiler.source>11</maven.compiler.source>
  17. <maven.compiler.target>11</maven.compiler.target>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>cn.reghao.jutil</groupId>
  22. <artifactId>jdk</artifactId>
  23. <version>1.0.0-SNAPSHOT</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.github.docker-java</groupId>
  27. <artifactId>docker-java</artifactId>
  28. <version>3.2.12</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.github.docker-java</groupId>
  32. <artifactId>docker-java-transport-httpclient5</artifactId>
  33. <version>3.2.12</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.github.oshi</groupId>
  37. <artifactId>oshi-core</artifactId>
  38. <version>6.4.0</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.squareup.okhttp3</groupId>
  42. <artifactId>okhttp</artifactId>
  43. <version>4.10.0</version>
  44. </dependency>
  45. </dependencies>
  46. </project>