<?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>me.mctp</groupId> <artifactId>MCTPAudio</artifactId> <version>1.5-SNAPSHOT</version> <packaging>jar</packaging> <name>MCTPAudio</name> <description>The audio plugin of McThemeParks!</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <url>https://mcthemeparks.eu</url> <pluginRepositories> <pluginRepository> <id>maven-snapshots</id> <url>https://repository.apache.org/content/repositories/snapshots/</url> </pluginRepository> </pluginRepositories> <distributionManagement> <snapshotRepository> <id>nexus-snapshots</id> <url>https://repo.sbdevelopment.tech/repository/mcthemeparks-private-snapshot/</url> </snapshotRepository> </distributionManagement> <build> <defaultGoal>clean package</defaultGoal> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.10.1</version> <configuration> <release>17</release> <compilerArgs> <arg>-parameters</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.3.1-SNAPSHOT</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <minimizeJar>true</minimizeJar> <createDependencyReducedPom>false</createDependencyReducedPom> <relocations> <relocation> <pattern>co.aikar.commands</pattern> <shadedPattern>nl.sbdeveloper.mctpaudio.libs.acf</shadedPattern> </relocation> <relocation> <pattern>co.aikar.locales</pattern> <shadedPattern>nl.sbdeveloper.mctpaudio.libs.locales</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.0.0</version> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <executions> <execution> <id>default-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> </execution> </executions> <configuration> <serverId>nexus-snapshots</serverId> <nexusUrl>https://repo.sbdevelopment.tech/</nexusUrl> <skipStaging>true</skipStaging> </configuration> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> </build> <repositories> <repository> <id>spigotmc-repo</id> <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> </repository> <repository> <id>sonatype</id> <url>https://oss.sonatype.org/content/groups/public/</url> </repository> <repository> <id>sk89q-repo</id> <url>https://maven.enginehub.org/repo/</url> </repository> <repository> <id>MG-Dev Jenkins CI Maven Repository</id> <url>https://ci.mg-dev.eu/plugin/repository/everything</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.spigotmc</groupId> <artifactId>spigot</artifactId> <version>1.19.2-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.java-websocket</groupId> <artifactId>Java-WebSocket</artifactId> <version>1.5.3</version> </dependency> <dependency> <groupId>com.mpatric</groupId> <artifactId>mp3agic</artifactId> <version>0.9.1</version> </dependency> <dependency> <groupId>com.sk89q.worldguard</groupId> <artifactId>worldguard-bukkit</artifactId> <version>7.1.0-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>net.raidstone</groupId> <artifactId>WorldGuardEvents</artifactId> <version>1.18.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>co.aikar</groupId> <artifactId>acf-paper</artifactId> <version>0.5.1-SNAPSHOT</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.bergerkiller.bukkit</groupId> <artifactId>BKCommonLib</artifactId> <version>1.19.1-v1</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.bergerkiller.bukkit</groupId> <artifactId>TrainCarts</artifactId> <version>1.19-v3</version> <scope>provided</scope> </dependency> </dependencies> </project>