pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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>xyz.tbvns</groupId>
  17. <artifactId>PowerGD</artifactId>
  18. <version>1.0-ALPHA</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.github.oshi</groupId>
  22. <artifactId>oshi-core</artifactId>
  23. <version>6.6.5</version>
  24. <scope>compile</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>ch.qos.logback</groupId>
  28. <artifactId>logback-classic</artifactId>
  29. <version>1.5.9</version>
  30. <scope>compile</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.projectlombok</groupId>
  34. <artifactId>lombok</artifactId>
  35. <version>1.18.34</version>
  36. <scope>compile</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>commons-io</groupId>
  40. <artifactId>commons-io</artifactId>
  41. <version>2.17.0</version>
  42. <scope>compile</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>commons-codec</groupId>
  46. <artifactId>commons-codec</artifactId>
  47. <version>1.17.1</version>
  48. </dependency>
  49. </dependencies>
  50. </project>