Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion org.eclipse.jdt.launching.javaagent/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ 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.9.0,10.0.0)"
Import-Package: org.objectweb.asm;version="[9.10.0,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.500-SNAPSHOT</version>
<version>3.10.600-SNAPSHOT</version>

<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.9</version>
<version>9.10</version>
</dependency>
</dependencies>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2014, 2024 Igor Fedorenko
* Copyright (c) 2014, 2026 Igor Fedorenko and others
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand All @@ -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.V26;
public static final int MAX_CLASS_MAJOR = Opcodes.V27;

/** 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.
Loading