pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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>xyz.tbvns</groupId>
  7. <artifactId>core</artifactId>
  8. <version>1.0-ALPHA</version>
  9. <properties>
  10. <maven.compiler.source>21</maven.compiler.source>
  11. <maven.compiler.target>21</maven.compiler.target>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.github.oshi</groupId>
  17. <artifactId>oshi-core</artifactId>
  18. <version>6.6.5</version>
  19. <scope>compile</scope>
  20. </dependency>
  21. <dependency>
  22. <groupId>ch.qos.logback</groupId>
  23. <artifactId>logback-classic</artifactId>
  24. <version>1.5.9</version>
  25. <scope>compile</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.projectlombok</groupId>
  29. <artifactId>lombok</artifactId>
  30. <version>1.18.34</version>
  31. <scope>compile</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>commons-io</groupId>
  35. <artifactId>commons-io</artifactId>
  36. <version>2.17.0</version>
  37. <scope>compile</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>commons-codec</groupId>
  41. <artifactId>commons-codec</artifactId>
  42. <version>1.17.1</version>
  43. </dependency>
  44. </dependencies>
  45. </project>