Skip to content

Commit

Permalink
Upgrade javaagent-shaded to ASM 9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
subyssurendran666 authored and iloveeclipse committed Apr 25, 2023
1 parent 4a5a31b commit 5e3399b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 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.100.qualifier
Bundle-Version: 3.10.200.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.4.0,10.0.0)"
Import-Package: org.objectweb.asm;version="[9.5.0,10.0.0)"
8 changes: 4 additions & 4 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.100-SNAPSHOT</version>
<version>3.10.200-SNAPSHOT</version>

<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.4</version>
<version>9.5</version>
</dependency>
</dependencies>

Expand All @@ -36,8 +36,8 @@
<version>3.5.1</version>
<configuration>
<!-- http://maven.apache.org/plugins/maven-compiler-plugin/ -->
<source>1.7</source>
<target>1.7</target>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>

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.V20;
public static final int MAX_CLASS_MAJOR = Opcodes.V21;

/** 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 5e3399b

Please sign in to comment.