Skip to content

Commit

Permalink
ASM Upgrade 9.7.1 with Java 24 Opcode support (#542)
Browse files Browse the repository at this point in the history
ASM Upgrade 9.7.1 with Java 24 Opcode support

#540
  • Loading branch information
SougandhS authored Oct 28, 2024
1 parent b47a6d2 commit 9e1b75a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions org.eclipse.jdt.launching.javaagent/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.jdt.launching.javaagent;singleton:=true
Bundle-Version: 3.10.200.qualifier
Bundle-Version: 3.10.300.qualifier
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: JavaSE-11
Automatic-Module-Name: org.eclipse.jdt.launching.javaagent
Import-Package: org.objectweb.asm;version="[9.7.0,10.0.0)"
Import-Package: org.objectweb.asm;version="[9.7.1,10.0.0)"
4 changes: 2 additions & 2 deletions org.eclipse.jdt.launching.javaagent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@

<groupId>org.eclipse.jdt</groupId>
<artifactId>org.eclipse.jdt.launching.javaagent</artifactId>
<version>3.10.200-SNAPSHOT</version>
<version>3.10.300-SNAPSHOT</version>

<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.7</version>
<version>9.7.1</version>
</dependency>
</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class ClassfileTransformer {
private static final String STRATA_ID = "jdt"; //$NON-NLS-1$

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

/** supported ASM API version, must match {@link #MAX_CLASS_MAJOR} above */
private static final int ASM_API = Opcodes.ASM9;
Expand Down
Binary file modified org.eclipse.jdt.launching/lib/javaagent-shaded.jar
Binary file not shown.

0 comments on commit 9e1b75a

Please sign in to comment.