Skip to content

Commit a074958

Browse files
committed
Update libraries and Gradle wrapper
Also introduces Java 24 write support
1 parent 95e60e7 commit a074958

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

d2j-base-cmd/src/main/java/com/googlecode/dex2jar/tools/Constants.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ private Constants() {
88
throw new UnsupportedOperationException();
99
}
1010

11-
public static final int MAX_JAVA_VERSION = 23;
11+
public static final int MAX_JAVA_VERSION = 24;
1212

1313
public static final int[] JAVA_VERSIONS = new int[]{
1414
0,
@@ -35,6 +35,7 @@ private Constants() {
3535
Opcodes.V21,
3636
Opcodes.V22,
3737
Opcodes.V23,
38+
Opcodes.V24,
3839
};
3940

4041
public static final int ASM_VERSION = Opcodes.ASM9;

gradle/libs.versions.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[versions]
22
antlr3 = '3.5.3'
33
antlr4 = '4.13.2'
4-
asm = '9.7'
4+
asm = '9.7.1'
55
smali = '3.0.8'
66
commons-compress = '1.27.1'
7-
junit = '5.11.0'
8-
junit-platform = '1.11.0'
7+
junit = '5.11.3'
8+
junit-platform = '1.11.3'
99
r8 = '4.0.63' # Newer versions only for Java 11+
1010
nexus-publish-plugin = '2.0.0'
11-
shadow-plugin = '8.3.1'
11+
shadow-plugin = '8.3.3'
1212
versions-plugin = '0.51.0'
1313

1414
[libraries]

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME
Binary file not shown.

0 commit comments

Comments
 (0)