Skip to content

Commit 9e1b75a

Browse files
authored
ASM Upgrade 9.7.1 with Java 24 Opcode support (eclipse-jdt#542)
ASM Upgrade 9.7.1 with Java 24 Opcode support eclipse-jdt#540
1 parent b47a6d2 commit 9e1b75a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

org.eclipse.jdt.launching.javaagent/META-INF/MANIFEST.MF

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %pluginName
44
Bundle-SymbolicName: org.eclipse.jdt.launching.javaagent;singleton:=true
5-
Bundle-Version: 3.10.200.qualifier
5+
Bundle-Version: 3.10.300.qualifier
66
Bundle-Vendor: %providerName
77
Bundle-Localization: plugin
88
Bundle-ActivationPolicy: lazy
99
Bundle-RequiredExecutionEnvironment: JavaSE-11
1010
Automatic-Module-Name: org.eclipse.jdt.launching.javaagent
11-
Import-Package: org.objectweb.asm;version="[9.7.0,10.0.0)"
11+
Import-Package: org.objectweb.asm;version="[9.7.1,10.0.0)"

org.eclipse.jdt.launching.javaagent/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818

1919
<groupId>org.eclipse.jdt</groupId>
2020
<artifactId>org.eclipse.jdt.launching.javaagent</artifactId>
21-
<version>3.10.200-SNAPSHOT</version>
21+
<version>3.10.300-SNAPSHOT</version>
2222

2323
<dependencies>
2424
<dependency>
2525
<groupId>org.ow2.asm</groupId>
2626
<artifactId>asm</artifactId>
27-
<version>9.7</version>
27+
<version>9.7.1</version>
2828
</dependency>
2929
</dependencies>
3030

org.eclipse.jdt.launching.javaagent/src/main/java/org/eclipse/jdt/launching/internal/weaving/ClassfileTransformer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class ClassfileTransformer {
2525
private static final String STRATA_ID = "jdt"; //$NON-NLS-1$
2626

2727
/** max supported java class format major version, must match {@link #ASM_API} below **/
28-
public static final int MAX_CLASS_MAJOR = Opcodes.V23;
28+
public static final int MAX_CLASS_MAJOR = Opcodes.V24;
2929

3030
/** supported ASM API version, must match {@link #MAX_CLASS_MAJOR} above */
3131
private static final int ASM_API = Opcodes.ASM9;
309 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)