/
minecraftbackup
/
AnarchyExploitFixes
Обзор
Документация
Войти
/
minecraftbackup
/
AnarchyExploitFixes
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.5.0
pom.xml
177 строк
7 KB
xGinko
rework commands so they can be toggled
15 окт 2023, 20:12
15 окт 2023, 20:12
e8db041
Код
Авторство
О чём код?
<?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.moomoo.anarchyexploitfixes</groupId> <artifactId>AnarchyExploitFixes</artifactId> <version>2.5.0</version> <modules> <module>AnarchyExploitFixesFolia</module> <module>AnarchyExploitFixesLegacy</module> </modules> <packaging>pom</packaging> <name>AnarchyExploitFixes</name> <description>Prevent many exploits that affect anarchy servers.</description> <url>github.com/moom0o/AnarchyExploitFixes</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <createDependencyReducedPom>false</createDependencyReducedPom> <finalName>${project.name}-${project.version}</finalName> <minimizeJar>true</minimizeJar> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>LICENSE</exclude> <exclude>META-INF/MANIFEST.MF</exclude> <exclude>META-INF/LICENSE.txt</exclude> <exclude>META-INF/NOTICE.txt</exclude> <exclude>META-INF/maven/de.tr7zw/functional-annotations/pom.properties</exclude> <exclude>META-INF/maven/de.tr7zw/functional-annotations/pom.xml</exclude> <exclude>com/cryptomorin/xseries/XBiome*</exclude> <exclude>com/cryptomorin/xseries/XEntity*</exclude> <exclude>com/cryptomorin/xseries/XPotion*</exclude> <exclude>com/cryptomorin/xseries/NMSExtras*</exclude> <exclude>com/cryptomorin/xseries/NoteBlockMusic*</exclude> <exclude>com/cryptomorin/xseries/SkullCacheListener*</exclude> </excludes> </filter> </filters> </configuration> </execution> </executions> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> </build> <repositories> <repository> <id>papermc</id> <url>https://papermc.io/repo/repository/maven-public/</url> </repository> <repository> <id>protocollib-repo</id> <url>https://repo.dmulloy2.net/nexus/repository/public/</url> </repository> <repository> <id>nbtapi-repo</id> <url>https://repo.codemc.io/repository/maven-public/</url> <layout>default</layout> </repository> <repository> <id>configmaster-repo</id> <url>https://ci.pluginwiki.us/plugin/repository/everything/</url> </repository> <repository> <id>aikar-repo</id> <url>https://repo.aikar.co/content/groups/aikar/</url> </repository> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> </repositories> <dependencies> <!-- Command Framework --> <dependency> <groupId>cloud.commandframework</groupId> <artifactId>cloud-paper</artifactId> <version>1.8.4</version> </dependency> <dependency> <groupId>cloud.commandframework</groupId> <artifactId>cloud-annotations</artifactId> <version>1.8.4</version> </dependency> <!-- Bukkit bStats --> <dependency> <groupId>org.bstats</groupId> <artifactId>bstats-bukkit</artifactId> <version>3.0.2</version> <scope>compile</scope> </dependency> <!-- Useful Paper related tools --> <dependency> <groupId>io.papermc</groupId> <artifactId>paperlib</artifactId> <version>1.0.8</version> <scope>compile</scope> </dependency> <!-- ProtocolLib to patch packet based exploits --> <dependency> <groupId>com.comphenix.protocol</groupId> <artifactId>ProtocolLib</artifactId> <version>5.1.0</version> <scope>provided</scope> </dependency> <!-- NBT API for cross version nbt tag handling --> <dependency> <groupId>de.tr7zw</groupId> <artifactId>item-nbt-api</artifactId> <version>2.12.0</version> </dependency> <!-- ConfigurationMaster for enhanced config.yml management --> <dependency> <groupId>com.github.thatsmusic99</groupId> <artifactId>ConfigurationMaster-API</artifactId> <version>v2.0.0-rc.1</version> <scope>compile</scope> </dependency> <!-- FastMath --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-math3</artifactId> <version>3.6.1</version> <scope>compile</scope> </dependency> <!-- Apache commons text --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> <version>1.10.0</version> <scope>compile</scope> </dependency> <!-- Rule based number format used in first join messages to format to ordinal based on locale --> <dependency> <groupId>com.ibm.icu</groupId> <artifactId>icu4j</artifactId> <version>73.2</version> <scope>compile</scope> </dependency> </dependencies> </project>