mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-10-31 23:59:36 +01:00
434 lines
18 KiB
XML
434 lines
18 KiB
XML
<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>com.gmail.nossr50.mcMMO</groupId>
|
|
<artifactId>mcMMO</artifactId>
|
|
<version>2.2.005-SNAPSHOT</version>
|
|
<name>mcMMO</name>
|
|
<url>https://github.com/mcMMO-Dev/mcMMO</url>
|
|
<scm>
|
|
<url>https://github.com/mcMMO-Dev/mcMMO</url>
|
|
<connection>scm:git:git://github.com/mcMMO-Dev/mcMMO.git</connection>
|
|
<developerConnection>scm:git:git@github.com:mcMMO-Dev/mcMMO.git</developerConnection>
|
|
<tag>HEAD</tag>
|
|
</scm>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
<java.version>17</java.version>
|
|
</properties>
|
|
|
|
<issueManagement>
|
|
<url>https://github.com/mcMMO-Dev/mcMMO/issues</url>
|
|
<system>GitHub</system>
|
|
</issueManagement>
|
|
<packaging>jar</packaging>
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>neetgames</id>
|
|
<url>https://nexus.neetgames.com/repository/maven-releases/</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>neetgames</id>
|
|
<url>https://nexus.neetgames.com/repository/maven-snapshots/</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
<build>
|
|
<finalName>${project.artifactId}</finalName>
|
|
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>
|
|
<resources>
|
|
<resource>
|
|
<targetPath>.</targetPath>
|
|
<filtering>true</filtering>
|
|
<directory>${basedir}/src/main/resources/</directory>
|
|
<includes>
|
|
<include>*.yml</include>
|
|
<include>.jenkins</include>
|
|
</includes>
|
|
</resource>
|
|
<resource>
|
|
<targetPath>com/gmail/nossr50/locale</targetPath>
|
|
<filtering>true</filtering>
|
|
<directory>${basedir}/src/main/resources/locale/</directory>
|
|
<includes>
|
|
<include>locale*.properties</include>
|
|
</includes>
|
|
</resource>
|
|
<resource>
|
|
<targetPath>mods</targetPath>
|
|
<filtering>true</filtering>
|
|
<directory>${basedir}/src/main/resources/mods</directory>
|
|
<includes>
|
|
<include>*.yml</include>
|
|
</includes>
|
|
</resource>
|
|
<resource>
|
|
<targetPath>.</targetPath>
|
|
<filtering>true</filtering>
|
|
<directory>${basedir}</directory>
|
|
<includes>
|
|
<include>LICENSE</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>3.0.0-M7</version>
|
|
|
|
<configuration>
|
|
<junitArtifactName>org.junit.jupiter:junit-jupiter</junitArtifactName>
|
|
<trimStackTrace>false</trimStackTrace>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
<version>3.0.0-M7</version>
|
|
|
|
<configuration>
|
|
<junitArtifactName>org.junit.jupiter:junit-jupiter</junitArtifactName>
|
|
<trimStackTrace>false</trimStackTrace>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
<version>3.0.0-M6</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.10.1</version>
|
|
<configuration>
|
|
<release>16</release>
|
|
<compilerArgs>
|
|
<arg>-parameters</arg> <!-- used for ACF syntax stuff -->
|
|
</compilerArgs>
|
|
<excludes>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<configuration>
|
|
<descriptors>
|
|
<descriptor>src/main/assembly/package.xml</descriptor>
|
|
</descriptors>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>build</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.3.0</version>
|
|
<configuration>
|
|
<artifactSet>
|
|
<includes>
|
|
<include>commons-logging:commons-logging</include>
|
|
<include>org.apache.tomcat:tomcat-jdbc</include>
|
|
<include>org.apache.tomcat:tomcat-juli</include>
|
|
<include>org.bstats:bstats-base</include>
|
|
<include>org.bstats:bstats-bukkit</include>
|
|
<include>net.kyori:adventure-api</include>
|
|
<include>net.kyori:adventure-text-serializer-gson</include>
|
|
<include>net.kyori:adventure-platform-bukkit</include>
|
|
<include>net.kyori:adventure-platform-api</include>
|
|
<include>net.kyori:adventure-platform-viaversion</include>
|
|
<include>net.kyori:adventure-platform-facet</include>
|
|
<include>net.kyori:adventure-nbt</include>
|
|
<include>net.kyori:adventure-key</include>
|
|
<include>net.kyori:examination-api</include>
|
|
<include>net.kyori:examination-string</include>
|
|
<include>net.kyori:adventure-text-serializer-legacy</include>
|
|
<include>net.kyori:adventure-text-serializer-gson</include>
|
|
<include>net.kyori:adventure-text-serializer-json</include>
|
|
<include>net.kyori:adventure-text-serializer-bungeecord</include>
|
|
<include>net.kyori:adventure-text-serializer-craftbukkit</include>
|
|
<include>net.kyori:adventure-text-serializer-gson-legacy-impl</include>
|
|
<include>net.kyori:adventure-text-serializer-json-legacy-impl</include>
|
|
<include>net.kyori:option</include>
|
|
<include>co.aikar:acf-bukkit</include>
|
|
<include>com.tcoded:FoliaLib</include>
|
|
</includes>
|
|
</artifactSet>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>net.kyori</pattern>
|
|
<shadedPattern>com.gmail.nossr50.mcmmo.kyori</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>co.aikar.commands</pattern>
|
|
<shadedPattern>com.gmail.nossr50.mcmmo.acf</shadedPattern> <!-- Replace this -->
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>co.aikar.locales</pattern>
|
|
<shadedPattern>com.gmail.nossr50.mcmmo.locales</shadedPattern> <!-- Replace this -->
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>org.apache.commons.logging</pattern>
|
|
<shadedPattern>com.gmail.nossr50.mcmmo.commons.logging</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>org.apache.juli</pattern>
|
|
<shadedPattern>com.gmail.nossr50.mcmmo.database.tomcat.juli</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>org.apache.tomcat</pattern>
|
|
<shadedPattern>com.gmail.nossr50.mcmmo.database.tomcat</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>org.bstats</pattern>
|
|
<shadedPattern>com.gmail.nossr50.mcmmo.metrics.bstats</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>com.tcoded.folialib</pattern>
|
|
<shadedPattern>com.gmail.nossr50.mcmmo.folialib</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
<extensions>
|
|
<extension>
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
<artifactId>wagon-file</artifactId>
|
|
<version>3.5.2</version>
|
|
</extension>
|
|
</extensions>
|
|
</build>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>maven-snapshots</id>
|
|
<url>https://repository.apache.org/content/repositories/snapshots/</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>spigot-repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>CodeMC</id>
|
|
<url>https://repo.codemc.org/repository/maven-public</url>
|
|
</repository>
|
|
<repository>
|
|
<id>enginehub-repo</id>
|
|
<url>https://maven.enginehub.org/repo/</url>
|
|
</repository>
|
|
<repository> <!-- for development builds -->
|
|
<id>sonatype-oss</id>
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>aikar</id>
|
|
<url>https://repo.aikar.co/content/groups/aikar/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>sonatype-oss-snapshots1</id>
|
|
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>placeholderapi</id>
|
|
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>devmart-other</id>
|
|
<url>https://nexuslite.gcnt.net/repos/other/</url>
|
|
</repository>
|
|
<!-- ... -->
|
|
<!-- ... -->
|
|
</repositories>
|
|
<dependencies>
|
|
<!-- https://mvnrepository.com/artifact/com.h2database/h2 -->
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
<version>2.2.224</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>me.clip</groupId>
|
|
<artifactId>placeholderapi</artifactId>
|
|
<version>2.11.3</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>co.aikar</groupId>
|
|
<artifactId>acf-bukkit</artifactId> <!-- Don't forget to replace this -->
|
|
<version>0.5.1-SNAPSHOT</version> <!-- Replace this as well -->
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.kyori</groupId>
|
|
<artifactId>adventure-text-serializer-bungeecord</artifactId>
|
|
<version>4.3.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.kyori</groupId>
|
|
<artifactId>adventure-text-serializer-gson</artifactId>
|
|
<version>4.15.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.kyori</groupId>
|
|
<artifactId>adventure-text-serializer-gson-legacy-impl</artifactId>
|
|
<version>4.15.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.kyori</groupId>
|
|
<artifactId>adventure-text-serializer-json</artifactId>
|
|
<version>4.15.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.kyori</groupId>
|
|
<artifactId>adventure-text-serializer-json-legacy-impl</artifactId>
|
|
<version>4.15.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.kyori</groupId>
|
|
<artifactId>adventure-api</artifactId>
|
|
<version>4.15.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.kyori</groupId>
|
|
<artifactId>adventure-nbt</artifactId>
|
|
<version>4.15.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.kyori</groupId>
|
|
<artifactId>adventure-key</artifactId>
|
|
<version>4.15.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.kyori</groupId>
|
|
<artifactId>adventure-platform-api</artifactId>
|
|
<version>4.3.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.kyori</groupId>
|
|
<artifactId>adventure-platform-bukkit</artifactId>
|
|
<version>4.3.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.kyori</groupId>
|
|
<artifactId>adventure-platform-facet</artifactId>
|
|
<version>4.3.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.kyori</groupId>
|
|
<artifactId>adventure-platform-viaversion</artifactId>
|
|
<version>4.3.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.kyori</groupId>
|
|
<artifactId>option</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven.scm</groupId>
|
|
<artifactId>maven-scm-provider-gitexe</artifactId>
|
|
<version>2.0.0-M1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.bstats</groupId>
|
|
<artifactId>bstats-bukkit</artifactId>
|
|
<version>3.0.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot-api</artifactId>
|
|
<version>1.20.4-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sk89q.worldedit</groupId>
|
|
<artifactId>worldedit-bukkit</artifactId>
|
|
<version>7.2.0-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sk89q.worldguard</groupId>
|
|
<artifactId>worldguard-core</artifactId>
|
|
<version>7.0.7</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<!-- We use jetbrains instead. Excluding this -->
|
|
<!-- prevents us from using inconsistent annotations -->
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
<artifactId>jsr305</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sk89q.worldguard</groupId>
|
|
<artifactId>worldguard-legacy</artifactId>
|
|
<version>7.0.0-SNAPSHOT</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter</artifactId>
|
|
<version>5.9.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
<version>4.6.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-inline</artifactId>
|
|
<version>4.6.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.tomcat</groupId>
|
|
<artifactId>tomcat-jdbc</artifactId>
|
|
<version>10.1.0-M17</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jetbrains</groupId>
|
|
<artifactId>annotations</artifactId>
|
|
<version>23.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>32.1.1-jre</version> <!-- At this time Spigot is including 29.0 Guava classes that we are using -->
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.tcoded</groupId>
|
|
<artifactId>FoliaLib</artifactId>
|
|
<version>0.3.1</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|