pom.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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>com.anas.cmusrpc</groupId>
  7. <artifactId>cmus-rpc</artifactId>
  8. <version>2.0.1</version>
  9. <repositories>
  10. <repository>
  11. <id>jitpack.io</id>
  12. <url>https://jitpack.io</url>
  13. </repository>
  14. </repositories>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.github.Vatuu</groupId>
  18. <artifactId>discord-rpc</artifactId>
  19. <version>1.6.2</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.fasterxml.jackson.core</groupId>
  23. <artifactId>jackson-databind</artifactId>
  24. <version>2.14.1</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>commons-cli</groupId>
  28. <artifactId>commons-cli</artifactId>
  29. <version>1.5.0</version>
  30. </dependency>
  31. </dependencies>
  32. <properties>
  33. <maven.compiler.source>17</maven.compiler.source>
  34. <maven.compiler.target>17</maven.compiler.target>
  35. </properties>
  36. </project>