From 0e6253a103429dacd4970716e10df1e3072ba29c Mon Sep 17 00:00:00 2001 From: Radek Felcman Date: Wed, 5 Oct 2022 10:43:29 +0200 Subject: [PATCH] ASM version switch to 9.4 to be ready for JDK 20. There are changes in module-info.java as *analysis* directory was removed plus change in the pom.xml as SourceValue.java was removed too. Parent pom org.eclipse.ee4j:project was upgraded to 1.0.7. Signed-off-by: Radek Felcman --- org.eclipse.persistence.asm/pom.xml | 14 ++++---------- .../src/main/java/module-info.java | 3 +-- 2 files changed, 5 insertions(+), 12 deletions(-) diff --git a/org.eclipse.persistence.asm/pom.xml b/org.eclipse.persistence.asm/pom.xml index 7db505e..6051961 100644 --- a/org.eclipse.persistence.asm/pom.xml +++ b/org.eclipse.persistence.asm/pom.xml @@ -21,13 +21,13 @@ org.eclipse.ee4j project - 1.0.6 + 1.0.7 org.eclipse.persistence org.eclipse.persistence.asm - 9.3.0-SNAPSHOT + 9.4.0-SNAPSHOT EclipseLink ASM EclipseLink extension for Java bytecode manipulation and analysis framework @@ -85,8 +85,8 @@ 7 9 - - 9.3 + + 9.4 4.13.2 @@ -350,12 +350,6 @@ (1)]]> - - - ()]]> - ()]]> - - diff --git a/org.eclipse.persistence.asm/src/main/java/module-info.java b/org.eclipse.persistence.asm/src/main/java/module-info.java index 56a0296..42415ef 100644 --- a/org.eclipse.persistence.asm/src/main/java/module-info.java +++ b/org.eclipse.persistence.asm/src/main/java/module-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021 Oracle, IBM Corporation, and/or their affiliates. All rights reserved. + * Copyright (c) 2021, 2022 Oracle, IBM Corporation, and/or their affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at @@ -20,5 +20,4 @@ exports org.eclipse.persistence.internal.libraries.asm.commons; exports org.eclipse.persistence.internal.libraries.asm.signature; exports org.eclipse.persistence.internal.libraries.asm.tree; - exports org.eclipse.persistence.internal.libraries.asm.tree.analysis; }