Skip to content

Commit

Permalink
Update libraries and Gradle wrapper
Browse files Browse the repository at this point in the history
Also introduces Java 24 write support
  • Loading branch information
ThexXTURBOXx committed Oct 25, 2024
1 parent 95e60e7 commit a074958
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ private Constants() {
throw new UnsupportedOperationException();
}

public static final int MAX_JAVA_VERSION = 23;
public static final int MAX_JAVA_VERSION = 24;

public static final int[] JAVA_VERSIONS = new int[]{
0,
Expand All @@ -35,6 +35,7 @@ private Constants() {
Opcodes.V21,
Opcodes.V22,
Opcodes.V23,
Opcodes.V24,
};

public static final int ASM_VERSION = Opcodes.ASM9;
Expand Down
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[versions]
antlr3 = '3.5.3'
antlr4 = '4.13.2'
asm = '9.7'
asm = '9.7.1'
smali = '3.0.8'
commons-compress = '1.27.1'
junit = '5.11.0'
junit-platform = '1.11.0'
junit = '5.11.3'
junit-platform = '1.11.3'
r8 = '4.0.63' # Newer versions only for Java 11+
nexus-publish-plugin = '2.0.0'
shadow-plugin = '8.3.1'
shadow-plugin = '8.3.3'
versions-plugin = '0.51.0'

[libraries]
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Binary file renamed libs/asm-9.7-mctle.jar → libs/asm-9.7.1-mctle.jar
Binary file not shown.

0 comments on commit a074958

Please sign in to comment.