Skip to content

Commit

Permalink
rolled back worldedit to v7.2.6
Browse files Browse the repository at this point in the history
bad mojang upgrades libs in 1.18 snapshot which also affects worldedit binary compatibility
  • Loading branch information
Fallen-Breath committed Mar 25, 2022
1 parent 942726f commit 2acb749
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
8 changes: 2 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,6 @@ def projectMod = project(':' + settings.modname) {
all {
resolutionStrategy {
// force world edit to use the same lib as minecraft 1.13.2
force 'com.google.code.findbugs:jsr305:3.0.1'
force 'com.google.code.gson:gson:2.8.0'
force 'com.google.guava:guava:21.0'
force 'it.unimi.dsi:fastutil:8.2.1'
force 'org.apache.logging.log4j:log4j-api:2.8.1'
force 'org.apache.logging.log4j:log4j-core:2.8.1'
}
Expand Down Expand Up @@ -170,8 +166,8 @@ def projectMod = project(':' + settings.modname) {
}
dependencies {
// World Edit
compile 'com.sk89q.worldedit:worldedit-core:7.2.10'
worldEditLibs ('com.sk89q.worldedit:worldedit-core:7.2.10') {
compile 'com.sk89q.worldedit:worldedit-core:7.2.7'
worldEditLibs ('com.sk89q.worldedit:worldedit-core:7.2.7') {
exclude group: 'com.ibm.icu' // not used in worldedit at all
exclude group: 'org.antlr', module: 'antlr4' // only reserves the runtime package
exclude group: 'org.yaml' // worldedit only uses yaml stuffs in bukkit
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/carpet/worldedit/CarpetWorldEdit.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public class CarpetWorldEdit
private static final Logger LOGGER = LogManagerCompat.getLogger();

public static final String MOD_ID = "worldedit";
public static final String VERSION = "7.2.10";
public static final String VERSION = "7.2.6";

public static final String CUI_PLUGIN_CHANNEL = "cui";
public static final ResourceLocation CUI_IDENTIFIER = new ResourceLocation(CarpetWorldEdit.MOD_ID, CarpetWorldEdit.CUI_PLUGIN_CHANNEL);
Expand Down

0 comments on commit 2acb749

Please sign in to comment.