/
minecraftbackup
/
AnarchyExploitFixes
Обзор
Документация
Войти
/
minecraftbackup
/
AnarchyExploitFixes
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
1.25.2.2
pom.xml
123 строки
5 KB
moo
1.25.2.2 - illegals on items that normally dont have enchants
07 май 2022, 19:26
07 май 2022, 19:26
693755f
Код
Авторство
О чём код?
<?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"> <modelVersion>4.0.0</modelVersion> <groupId>me.moomoo</groupId> <artifactId>anarchyexploitfixes</artifactId> <version>1.25.2.2</version> <packaging>jar</packaging> <name>AnarchyExploitFixes</name> <description>Prevent many exploits that affect anarchy servers.</description> <properties> <java.version>1.8</java.version> <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.8.1</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.2.4</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <relocations> <relocation> <pattern>org.bstats</pattern> <shadedPattern>me.moomoo.anarchyexploitfixes.bstats</shadedPattern> </relocation> <relocation> <pattern>io.papermc.lib</pattern> <shadedPattern>me.moomoo.anarchyexploitfixes.paperlib</shadedPattern> </relocation> </relocations> <createDependencyReducedPom>false</createDependencyReducedPom> <minimizeJar>true</minimizeJar> </configuration> </execution> </executions> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> </build> <repositories> <repository> <id>papermc-repo</id> <url>https://papermc.io/repo/repository/maven-public/</url> </repository> <repository> <id>nms-repo</id> <url>https://repo.codemc.io/repository/nms/</url> </repository> <repository> <id>placeholderapi</id> <url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url> </repository> <repository> <id>dmulloy2-repo</id> <url>https://repo.dmulloy2.net/nexus/repository/public/</url> </repository> </repositories> <dependencies> <dependency> <groupId>com.destroystokyo.paper</groupId> <artifactId>paper-api</artifactId> <version>1.12.2-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.papermc</groupId> <artifactId>paperlib</artifactId> <version>1.0.7</version> <scope>compile</scope> </dependency> <dependency> <groupId>me.clip</groupId> <artifactId>placeholderapi</artifactId> <version>2.10.9</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.comphenix.protocol</groupId> <artifactId>ProtocolLib</artifactId> <version>4.7.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.bstats</groupId> <artifactId>bstats-bukkit</artifactId> <version>2.2.1</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.22</version> <scope>provided</scope> </dependency> </dependencies> </project>