File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
src/main/java/org/leavesmc/leavesclip Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -23,15 +23,16 @@ repositories {
2323}
2424
2525dependencies {
26+ @Suppress(" VulnerableLibrariesLocal" , " RedundantSuppression" )
2627 implementation(" io.sigpipe:jbsdiff:1.0" )
2728 implementation(" org.leavesmc:leaves-plugin-mixin-condition:1.0.0" )
28- implementation(" io.github.llamalad7:mixinextras-common:0.4.1 " )
29+ implementation(" io.github.llamalad7:mixinextras-common:0.5.0 " )
2930 implementation(" net.fabricmc:access-widener:2.1.0" )
30- implementation(" net.fabricmc:sponge-mixin:0.16.4 +mixin.0.8.7" ) {
31+ implementation(" net.fabricmc:sponge-mixin:0.16.5 +mixin.0.8.7" ) {
3132 exclude(group = " com.google.code.gson" , module = " gson" )
3233 exclude(group = " com.google.guava" , module = " guava" )
3334 }
34- implementation(" com.google.code.gson:gson:2.13.1 " )
35+ implementation(" com.google.code.gson:gson:2.13.2 " )
3536 implementation(" org.jetbrains:annotations:15.0" )
3637}
3738
Original file line number Diff line number Diff line change @@ -313,7 +313,7 @@ private static void overrideAsmVersion() {
313313 Class <?> asmClass = Class .forName ("org.spongepowered.asm.util.asm.ASM" );
314314 Field minorVersionField = asmClass .getDeclaredField ("implMinorVersion" );
315315 minorVersionField .setAccessible (true );
316- minorVersionField .setInt (null , 5 );
316+ minorVersionField .setInt (null , 8 );
317317
318318 } catch (Exception e ) {
319319 logger .error ("Failed to override asm version" , e );
You can’t perform that action at this time.
0 commit comments