TotalFreedomMod/pom.xml

434 lines
16 KiB
XML
Raw Permalink Normal View History

2015-11-18 20:41:51 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2015-11-18 20:41:51 +00:00
<modelVersion>4.0.0</modelVersion>
<groupId>me.totalfreedom</groupId>
2019-11-28 09:28:48 +00:00
<artifactId>TotalFreedomMod</artifactId>
2023-03-09 02:58:14 +00:00
<version>2022.06.1</version>
2015-11-18 20:41:51 +00:00
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<tfm.build.codename>Phoenix</tfm.build.codename>
<jar.finalName>${project.name}</jar.finalName>
<timestamp>${maven.build.timestamp}</timestamp>
<maven.build.timestamp.format>MM/dd/yyyy HH:mm</maven.build.timestamp.format>
2015-11-18 20:41:51 +00:00
</properties>
<name>TotalFreedomMod</name>
<description>Server modification for the TotalFreedom server</description>
<url>https://github.com/AtlasMediaGroup/TotalFreedomMod</url>
2015-11-18 20:41:51 +00:00
<licenses>
<license>
<name>TotalFreedom General License</name>
<url>https://github.com/TotalFreedom/License/blob/master/LICENSE.md</url>
</license>
</licenses>
<organization>
2020-01-12 02:59:12 +00:00
<name>TotalFreedom</name>
2015-11-18 20:41:51 +00:00
<url>https://totalfreedom.me</url>
</organization>
<scm>
<connection>scm:git:git@github.com:TFPatches/TotalFreedomMod.git</connection>
<developerConnection>scm:git:git@github.com:TFPatches/TotalFreedomMod.git</developerConnection>
2018-07-25 02:44:00 +00:00
<url>git@github.com:TFPatches/TotalFreedomMod.git</url>
2015-11-18 20:41:51 +00:00
</scm>
<repositories>
<repository>
<id>atlas-nexus-01-totalfreedom-development</id>
<url>https://nexus-01.core.atlas-media.co.uk/repository/totalfreedom-development/</url>
</repository>
<repository>
<id>CodeMC</id>
<url>https://repo.codemc.org/repository/maven-public/</url>
</repository>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
2020-04-14 06:40:22 +00:00
<repository>
<id>enginehub</id>
<url>https://maven.enginehub.org/repo/</url>
</repository>
2017-10-14 13:33:53 +00:00
<repository>
<id>elmakers-repo</id>
2020-12-24 22:52:35 +00:00
<url>https://maven.elmakers.com/repository/</url>
2017-10-14 13:33:53 +00:00
</repository>
<repository>
<id>dv8tion</id>
<name>m2-dv8tion</name>
<url>https://m2.dv8tion.net/releases/</url>
</repository>
<repository>
<id>playpro</id>
<url>https://maven.playpro.com/</url>
</repository>
<repository>
<id>md_5-public</id>
2020-12-24 22:52:35 +00:00
<url>https://repo.md-5.net/content/groups/public/</url>
</repository>
<repository>
<id>dmulloy2-repo</id>
2020-12-24 22:52:35 +00:00
<url>https://repo.dmulloy2.net/nexus/repository/public/</url>
</repository>
2020-01-15 23:10:00 +00:00
<repository>
<id>esentialsx-repo</id>
<url>https://repo.essentialsx.net/releases/</url>
</repository>
2015-11-18 20:41:51 +00:00
</repositories>
<dependencies>
2019-07-17 19:35:36 +00:00
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
2023-07-24 23:10:19 +00:00
<version>2.13.0</version>
2019-07-17 19:35:36 +00:00
<scope>compile</scope>
</dependency>
2019-07-31 04:35:41 +00:00
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
2019-07-31 04:35:41 +00:00
<scope>compile</scope>
</dependency>
2020-10-29 23:47:53 +00:00
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
2023-07-24 23:10:19 +00:00
<version>3.0.2</version>
2022-03-06 10:20:47 +00:00
<scope>compile</scope>
2020-01-25 06:27:16 +00:00
</dependency>
2015-11-18 20:41:51 +00:00
<dependency>
<groupId>me.totalfreedom.scissors</groupId>
2023-02-20 17:44:57 +00:00
<artifactId>Scissors-API</artifactId>
<version>1.19.4-R0.1-SNAPSHOT</version>
2017-12-29 18:12:47 +00:00
<scope>provided</scope>
2015-11-18 20:41:51 +00:00
</dependency>
<dependency>
2020-10-29 23:47:53 +00:00
<groupId>com.github.TotalFreedomMC</groupId>
<artifactId>BukkitTelnet</artifactId>
2020-10-29 23:47:53 +00:00
<version>541e9fdb84</version>
2017-12-29 18:12:47 +00:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.AtlasMediaGroup</groupId>
<artifactId>TF-LibsDisguises</artifactId>
<version>5a340341b0</version>
<scope>provided</scope>
2019-07-17 19:35:36 +00:00
</dependency>
<dependency>
2020-04-14 06:40:22 +00:00
<groupId>com.sk89q.worldedit</groupId>
<artifactId>worldedit-bukkit</artifactId>
<version>7.2.15</version>
2017-12-29 18:12:47 +00:00
<scope>provided</scope>
</dependency>
2015-11-18 20:41:51 +00:00
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
2023-07-24 23:10:19 +00:00
<version>4.4.1_353</version>
2018-07-25 02:44:00 +00:00
<scope>provided</scope>
2015-11-18 20:41:51 +00:00
</dependency>
2017-10-14 13:33:53 +00:00
<dependency>
<groupId>net.coreprotect</groupId>
<artifactId>coreprotect</artifactId>
2023-07-24 23:10:19 +00:00
<version>21.3</version>
2019-04-23 07:36:51 +00:00
<scope>provided</scope>
2017-10-14 13:33:53 +00:00
</dependency>
2017-10-14 13:33:53 +00:00
<dependency>
2020-04-14 06:40:22 +00:00
<groupId>com.sk89q.worldguard</groupId>
<artifactId>worldguard-bukkit</artifactId>
2023-07-24 23:16:26 +00:00
<version>7.0.8</version>
<scope>provided</scope>
2017-10-14 13:33:53 +00:00
</dependency>
2020-01-15 23:10:00 +00:00
<dependency>
<groupId>io.papermc</groupId>
<artifactId>paperlib</artifactId>
2023-07-24 23:10:19 +00:00
<version>1.0.8</version>
<scope>compile</scope>
2020-01-15 23:10:00 +00:00
</dependency>
2020-01-25 06:27:16 +00:00
2020-04-08 02:20:01 +00:00
<dependency>
<groupId>com.github.vexsoftware</groupId>
<artifactId>votifier</artifactId>
<version>v1.9</version>
<scope>provided</scope>
</dependency>
2020-04-29 23:29:43 +00:00
<dependency>
2022-02-16 21:02:00 +00:00
<groupId>net.essentialsx</groupId>
<artifactId>EssentialsX</artifactId>
2023-07-24 23:16:26 +00:00
<version>2.20.0</version>
2022-02-16 21:02:00 +00:00
<scope>provided</scope>
2020-04-29 23:29:43 +00:00
</dependency>
2020-07-01 01:51:06 +00:00
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.10.2</version>
2020-10-29 23:47:53 +00:00
<scope>compile</scope>
2020-07-01 01:51:06 +00:00
</dependency>
<dependency>
2020-10-29 23:47:53 +00:00
<groupId>org.javassist</groupId>
2020-07-01 01:51:06 +00:00
<artifactId>javassist</artifactId>
<version>3.29.1-GA</version>
2020-10-29 23:47:53 +00:00
<scope>compile</scope>
2020-07-01 01:51:06 +00:00
</dependency>
2021-03-02 05:03:49 +00:00
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
2023-07-24 23:10:19 +00:00
<version>24.0.1</version>
2021-03-02 05:03:49 +00:00
<scope>compile</scope>
</dependency>
2020-08-01 04:10:44 +00:00
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
2023-07-24 23:38:02 +00:00
<version>3.3.0</version>
2020-10-29 23:47:53 +00:00
<scope>compile</scope>
2020-08-01 04:10:44 +00:00
</dependency>
2021-03-02 05:03:49 +00:00
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
2023-07-24 23:10:19 +00:00
<version>5.10.0</version>
2021-03-02 05:03:49 +00:00
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.eclipse.sisu</groupId>
<artifactId>org.eclipse.sisu.inject</artifactId>
<version>0.3.5</version>
</dependency>
2015-11-18 20:41:51 +00:00
</dependencies>
2021-11-29 09:35:36 +00:00
<pluginRepositories>
<pluginRepository>
<id>apache.snapshots</id>
<url>https://repository.apache.org/snapshots/</url>
</pluginRepository>
</pluginRepositories>
2015-11-18 20:41:51 +00:00
<build>
<!-- Filter resources for build.properties -->
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<!-- Compiler -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2023-07-24 23:10:19 +00:00
<version>3.11.0</version>
<configuration>
<outputFileName>TotalFreedomMod.jar</outputFileName>
2021-11-29 14:03:29 +00:00
<compilerVersion>17</compilerVersion>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
<!-- Git describe -->
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>4.9.10</version>
<executions>
<execution>
<id>get-the-git-infos</id>
<goals>
<goal>revision</goal>
</goals>
</execution>
<execution>
<id>validate-the-git-infos</id>
<goals>
<goal>validateRevision</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
<configuration>
<dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
<prefix>git</prefix>
<dateFormat>yyyy-MM-dd HH:mm:ss</dateFormat>
<verbose>false</verbose>
<format>properties</format>
<failOnNoGitDirectory>false</failOnNoGitDirectory>
<failOnUnableToExtractRepoInfo>false</failOnUnableToExtractRepoInfo>
<includeOnlyProperties>
<includeOnlyProperty>git.commit.id.abbrev</includeOnlyProperty>
</includeOnlyProperties>
<gitDescribe>
<skip>false</skip>
<always>false</always>
<abbrev>7</abbrev>
<dirty>-dirty</dirty>
<match>*</match>
</gitDescribe>
</configuration>
</plugin>
2015-11-18 20:41:51 +00:00
<!-- Antrun -->
<plugin>
2018-06-02 08:18:28 +00:00
<groupId>org.apache.maven.plugins</groupId>
2015-11-18 20:41:51 +00:00
<artifactId>maven-antrun-plugin</artifactId>
<version>3.1.0</version>
2015-11-18 20:41:51 +00:00
<executions>
<execution>
<id>default-cli</id>
2015-11-18 20:41:51 +00:00
<phase>initialize</phase>
<configuration>
<target>
<propertyfile file="${project.basedir}/src/main/resources/build.properties"
comment="Build information. Edit this to your liking.">
<entry key="buildAuthor" default="unknown"/>
<entry key="buildNumber" default="0"/>
2018-08-08 21:51:40 +00:00
<entry key="buildCodeName" value="${tfm.build.codename}"/>
<entry key="buildVersion" value="${project.version}"/>
<entry key="buildDate" value="${timestamp}"/>
<!--suppress UnresolvedMavenProperty -->
<entry key="buildHead" value="${git.commit.id.abbrev}"/>
2015-11-18 20:41:51 +00:00
</propertyfile>
</target>
2015-11-18 20:41:51 +00:00
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Properties -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
2022-06-05 21:44:38 +00:00
<version>1.1.0</version>
2015-11-18 20:41:51 +00:00
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>read-project-properties</goal>
</goals>
<configuration>
<files>
<file>${project.basedir}/src/main/resources/build.properties</file>
2015-11-18 20:41:51 +00:00
</files>
</configuration>
</execution>
</executions>
</plugin>
<!-- Buildnumber -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
2023-07-24 23:10:19 +00:00
<version>3.2.0</version>
2015-11-18 20:41:51 +00:00
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>create</goal>
</goals>
</execution>
</executions>
<configuration>
<buildNumberPropertyName>maven.buildnumber</buildNumberPropertyName>
<buildNumberPropertiesFileLocation>${project.basedir}/src/main/resources/build.properties
</buildNumberPropertiesFileLocation>
TotalFreedomMod Electrum Version 5.0 This TotalFreedomMod release implements many changes. Most notably, the internals have been completely revamped. TotalFreedomMod now relies on the Aero library for core mechanics such as command handling and services. Another important change is the UUID system. In TotalFreedomMod Electrum, it has been completely removed. The core reason for this is that the system as a whole was very bugged. Additionally, it did not solve the primary reason for its conception: preserving player data when the player changes their username. This is because TotalFreedomMod servers usually run in offline-mode. This meaning that some of the players joining do not have a registerd Mojang UUID whatsoever. All in all, the UUID system was buggy, and it did not fix the reason it was implemented, so it has been completely removed. The admin list and the ban list now use usernames and IPs again. Lastly, many smaller changes have been implemented. Due to the amount of changes, they have not been named individualy. Please refer to the issues below for more details. Fixes #342 Fixes #350 Fixes #380 Fixes #684 Fixes #704 Fixes #716 Fixes #735 Fixes #745 Fixes #784 Fixes #765 Fixes #791 Fixes #805 Fixes #826 Fixes #883 Fixes #1524 Fixes #1534 Fixes #1536 Fixes #1538 Fixes #1545 Fixes #1546 Fixes #1568 Fixes #1627 Resolves #403 Resolves #435 Resolves #597 Resolves #603 Resolves #628 Resolves #690 Resolves #708 Resolves #747 Resolves #748 Resolves #749 Resolves #764 Resolves #767 Resolves #782 Resolves #809 Resolves #803 Resolves #811 Resolves #813 Resolves #830 Resolves #848 Resolves #856 Resolves #876 Resolves #908 Resolves #992 Resolves #1018 Resolves #1432 Resolves #1446 Resolves #1494 Resolves #1501 Resolves #1526 Resolves #1540 Resolves #1550 Resolves #1560 Resolves #1561 Resolves #1578 Resolves #1613
2016-05-12 19:40:39 +00:00
<format>{0,number,#}</format>
2015-11-18 20:41:51 +00:00
<items>
<item>buildNumber</item>
</items>
</configuration>
</plugin>
2019-07-17 19:35:36 +00:00
<!-- Shade -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2023-07-24 23:38:02 +00:00
<version>3.4.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>true</minimizeJar>
2020-09-12 03:27:26 +00:00
<relocations>
<relocation>
<pattern>io.papermc.lib</pattern>
<shadedPattern>me.totalfreedom.totalfreedommod.paperlib
</shadedPattern> <!-- Replace this -->
2020-09-12 03:27:26 +00:00
</relocation>
2020-10-29 23:47:53 +00:00
<relocation>
<pattern>org.bstats</pattern>
<shadedPattern>me.totalfreedom.totalfreedommod</shadedPattern>
</relocation>
2020-09-12 03:27:26 +00:00
</relocations>
<artifactSet>
<includes>
<include>org.reflections:reflections</include>
2020-09-12 03:27:26 +00:00
<include>io.papermc:paperlib</include>
2020-10-29 23:47:53 +00:00
<include>org.bstats:bstats-bukkit</include>
<include>org.bstats:bstats-base</include>
</includes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
2015-11-18 20:41:51 +00:00
</plugins>
</build>
<reporting>
<!-- Checkstyle -->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.1.2</version>
<configuration>
<configLocation>checkstyle.xml</configLocation>
<failOnViolation>true</failOnViolation>
<failsOnError>true</failsOnError>
<consoleOutput>true</consoleOutput>
</configuration>
</plugin>
</plugins>
</reporting>
2020-12-24 22:52:35 +00:00
</project>