From 5e1ba2dae632d76e724d6a623b69a2c8079e5f64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Silva?= Date: Mon, 12 Dec 2022 10:41:49 +0100 Subject: [PATCH 1/4] add explicit asm dependency --- pom.xml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/pom.xml b/pom.xml index 88bf306..3999db4 100644 --- a/pom.xml +++ b/pom.xml @@ -53,6 +53,22 @@ + + org.ow2.asm + asm + 9.4 + + + org.ow2.asm + asm-commons + 9.4 + + + org.ow2.asm + asm-tree + 9.4 + + junit From b4ab393d9db71567e89db5c8db0e47c62c819208 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Silva?= Date: Tue, 4 Apr 2023 17:50:05 +0200 Subject: [PATCH 2/4] add java 21 to ci --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ba57d93..b581ff7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,8 +8,8 @@ jobs: strategy: matrix: - java-version: [8, 11, 16, 17] - compiler-version: [1.1, 1.2, 1.3, 1.4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] + java-version: [8, 11, 16, 17, 20] + compiler-version: [1.1, 1.2, 1.3, 1.4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18] os: [ ubuntu-latest , macos-latest , windows-latest ] exclude: - os: macos-latest From ed6acbad1b7ca329d5555068d0205e667d15ff9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Silva?= Date: Tue, 4 Apr 2023 17:58:58 +0200 Subject: [PATCH 3/4] fix ci --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b581ff7..c410ac1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,8 +8,8 @@ jobs: strategy: matrix: - java-version: [8, 11, 16, 17, 20] - compiler-version: [1.1, 1.2, 1.3, 1.4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18] + java-version: [ 8 , 11 , 16, 17 , 20 , 21 ] + compiler-version: [ 1.1 , 1.2 , 1.3 , 1.4 , 5 , 6 , 7 , 8 , 9 , 10 , 11 , 12 , 13 , 14 , 15 , 16 , 17 , 18 , 19 , 20 ] os: [ ubuntu-latest , macos-latest , windows-latest ] exclude: - os: macos-latest From b747b8727af7eeb41afa7a42a1b16693f8d4c2ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Silva?= Date: Thu, 18 Jul 2024 16:25:08 +0200 Subject: [PATCH 4/4] reduce version numbers --- .github/workflows/tests.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c410ac1..30b5d88 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,14 +8,12 @@ jobs: strategy: matrix: - java-version: [ 8 , 11 , 16, 17 , 20 , 21 ] + java-version: [ 8 , 11 , 17 , 21 ] compiler-version: [ 1.1 , 1.2 , 1.3 , 1.4 , 5 , 6 , 7 , 8 , 9 , 10 , 11 , 12 , 13 , 14 , 15 , 16 , 17 , 18 , 19 , 20 ] os: [ ubuntu-latest , macos-latest , windows-latest ] exclude: - os: macos-latest java-version: 8 - - os: macos-latest - java-version: 16 steps: - name: Checkout