<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>eu.m724</groupId> <artifactId>music-plugin</artifactId> <version>0.0.1-SNAPSHOT</version> <properties> <maven.compiler.source>21</maven.compiler.source> <maven.compiler.target>21</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <repositories> <repository> <id>spigotmc-repo</id> <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> </repository> <repository> <id>maxhenkel</id> <url>https://maven.maxhenkel.de/repository/public</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.spigotmc</groupId> <artifactId>spigot-api</artifactId> <version>1.21.1-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>de.maxhenkel.voicechat</groupId> <artifactId>voicechat-api</artifactId> <version>2.5.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.gagravarr</groupId> <artifactId>vorbis-java-core</artifactId> <version>0.8</version> </dependency> <dependency> <groupId>net.bramp.ffmpeg</groupId> <artifactId>ffmpeg</artifactId> <version>0.8.0</version> </dependency> </dependencies> </project>