From 4e7ce272e96563fd4159f1917d82d5b75803a3d2 Mon Sep 17 00:00:00 2001 From: hcoles Date: Sat, 28 Mar 2020 15:21:48 +0000 Subject: [PATCH 1/2] bump asm to 8.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7facfd2a4..6384f8ed8 100644 --- a/pom.xml +++ b/pom.xml @@ -310,7 +310,7 @@ UTF-8 UTF-8 - 7.3.1 + 8.0 1.9.4 1.3 4.11 From 297ed3bebf54462add015d4614f80082ece840b0 Mon Sep 17 00:00:00 2001 From: hcoles Date: Sat, 28 Mar 2020 15:58:44 +0000 Subject: [PATCH 2/2] raise asm api level to 8 --- pitest/src/main/java/org/pitest/bytecode/ASMVersion.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pitest/src/main/java/org/pitest/bytecode/ASMVersion.java b/pitest/src/main/java/org/pitest/bytecode/ASMVersion.java index 29aabe5db..0a1f376d3 100644 --- a/pitest/src/main/java/org/pitest/bytecode/ASMVersion.java +++ b/pitest/src/main/java/org/pitest/bytecode/ASMVersion.java @@ -3,5 +3,5 @@ import org.objectweb.asm.Opcodes; public class ASMVersion { - public static final int ASM_VERSION = Opcodes.ASM7; + public static final int ASM_VERSION = Opcodes.ASM8; }