Skip to content

Commit

Permalink
Version 2.0.0 - Merge pull request #103 from xGinko/master
Browse files Browse the repository at this point in the history
  • Loading branch information
moom0o authored Feb 18, 2023
2 parents aed58d9 + 85dee3b commit c9b9634
Show file tree
Hide file tree
Showing 183 changed files with 14,122 additions and 3,884 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ jobs:
# Artifact name
name: AnarchyExploitFixes
# A file, directory or wildcard pattern that describes what to upload
path: target/anarchyexploitfixes-*.jar
path: target/AnarchyExploitFixes-*.jar
1,307 changes: 934 additions & 373 deletions README.md

Large diffs are not rendered by default.

111 changes: 83 additions & 28 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<modelVersion>4.0.0</modelVersion>

<groupId>me.moomoo</groupId>
<artifactId>anarchyexploitfixes</artifactId>
<version>1.27.3</version>
<artifactId>AnarchyExploitFixes</artifactId>
<version>2.0.0</version>
<packaging>jar</packaging>

<name>AnarchyExploitFixes</name>
Expand All @@ -16,6 +16,7 @@
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<url>github.com/moom0o/AnarchyExploitFixes</url>

<build>
<plugins>
Expand All @@ -31,7 +32,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<version>3.4.1</version>
<executions>
<execution>
<phase>package</phase>
Expand All @@ -45,12 +46,25 @@
<shadedPattern>me.moomoo.anarchyexploitfixes.bstats</shadedPattern>
</relocation>
<relocation>
<pattern>io.papermc.lib</pattern>
<shadedPattern>me.moomoo.anarchyexploitfixes.paperlib</shadedPattern>
<pattern>com.cryptomorin.xseries</pattern>
<shadedPattern>me.moomoo.anarchyexploitfixes.xseries</shadedPattern>
</relocation>
</relocations>
<createDependencyReducedPom>false</createDependencyReducedPom>
<minimizeJar>true</minimizeJar>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<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>
Expand All @@ -74,12 +88,24 @@
<url>https://repo.codemc.io/repository/nms/</url>
</repository>
<repository>
<id>placeholderapi</id>
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
<id>protocollib-repo</id>
<url>https://repo.dmulloy2.net/nexus/repository/public/</url>
</repository>
<repository>
<id>dmulloy2-repo</id>
<url>https://repo.dmulloy2.net/nexus/repository/public/</url>
<id>configmaster-repo</id>
<url>https://ci.pluginwiki.us/plugin/repository/everything/</url>
</repository>
<repository>
<id>floodgate</id>
<url>https://repo.opencollab.dev/maven-snapshots/</url>
</repository>
<repository>
<id>nocheatplus-snapshots</id>
<url>https://repo.md-5.net/content/repositories/snapshots/</url>
</repository>
<repository>
<id>nocheatplus-releases</id>
<url>https://repo.md-5.net/content/repositories/releases/</url>
</repository>
</repositories>

Expand All @@ -90,39 +116,68 @@
<version>1.12.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<!-- ProtocolLib to patch packet based exploits -->
<dependency>
<groupId>io.papermc</groupId>
<artifactId>paperlib</artifactId>
<version>1.0.7</version>
<scope>compile</scope>
<groupId>com.comphenix.protocol</groupId>
<artifactId>ProtocolLib</artifactId>
<version>5.0.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<!-- XMaterials for correct item identification in 1.12.2+ -->
<dependency>
<groupId>me.clip</groupId>
<artifactId>placeholderapi</artifactId>
<version>2.10.9</version>
<scope>provided</scope>
<groupId>com.github.cryptomorin</groupId>
<artifactId>XSeries</artifactId>
<version>9.2.0</version>
</dependency>
<!-- Configuration Master for enhanced config.yml management -->
<dependency>
<groupId>com.comphenix.protocol</groupId>
<artifactId>ProtocolLib</artifactId>
<version>4.7.0</version>
<scope>provided</scope>
<groupId>com.github.thatsmusic99</groupId>
<artifactId>ConfigurationMaster-API</artifactId>
<version>v2.0.0-BETA-3</version>
</dependency>
<!-- reflections for auto-lang feature -->
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.10.2</version>
</dependency>
<!-- bukkit bStats for plugin stats -->
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
<version>2.2.1</version>
<version>3.0.0</version>
</dependency>
<!-- Apache commons math for faster Math.hypot (calculating fly speed) in elytrafly -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>3.6.1</version>
</dependency>
<!-- Apache commons text for comparing message similarity in anti chat spam -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.22</version>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.10.0</version>
</dependency>
<!-- rule based number format used for first join messages to format to ordinal -->
<dependency>
<groupId>com.ibm.icu</groupId>
<artifactId>icu4j</artifactId>
<version>72.1</version>
</dependency>
<!-- floodgate api to help identify floodgate players -->
<dependency>
<groupId>org.geysermc.floodgate</groupId>
<artifactId>api</artifactId>
<version>2.2.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<!-- NoCheatPlus Api to exempt floodgate players -->
<dependency>
<groupId>com.github.cryptomorin</groupId>
<artifactId>XSeries</artifactId>
<version>9.1.0</version>
<groupId>fr.neatmonster</groupId>
<artifactId>nocheatplus</artifactId>
<version>3.16.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
Loading

0 comments on commit c9b9634

Please sign in to comment.