From a298d1704b4601605bd5de7b6b1faa5ee685418b Mon Sep 17 00:00:00 2001 From: Jay Jay Billings Date: Wed, 28 May 2025 18:20:45 -0400 Subject: [PATCH 1/3] Updated Jacoco to fix build. Signed-off-by: Jay Jay Billings --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 34254e2b..3bc6095c 100644 --- a/pom.xml +++ b/pom.xml @@ -269,7 +269,7 @@ org.jacoco jacoco-maven-plugin - 0.8.2 + 0.8.4 prepare-agent From d54a5451abd257055c81a9ddfae4f911aa5d3e8f Mon Sep 17 00:00:00 2001 From: Jay Jay Billings Date: Wed, 28 May 2025 18:33:31 -0400 Subject: [PATCH 2/3] Fixed Maven Bundle plugin to remove concurrent exception error. Signed-off-by: Jay Jay Billings --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3bc6095c..12d7f938 100644 --- a/pom.xml +++ b/pom.xml @@ -252,7 +252,7 @@ org.apache.felix maven-bundle-plugin - 4.2.1 + 5.1.1 org.locationtech.spatial4j*;version=${project.version} From 656980bfe2b50f3728aa45144b726541c7ec4e6d Mon Sep 17 00:00:00 2001 From: Jay Jay Billings Date: Sat, 31 May 2025 07:11:14 -0400 Subject: [PATCH 3/3] Added Java versions 17 and 21 to build.yml. Signed-off-by: Jay Jay Billings --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 47c73dc7..47abf030 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - java: [ '8', '11' ] + java: [ '8', '11' , '17', '21' ] steps: - uses: actions/checkout@v4 @@ -32,4 +32,4 @@ jobs: if: always() uses: EnricoMi/publish-unit-test-result-action@v2 with: - files: target/surefire-reports/*.xml \ No newline at end of file + files: target/surefire-reports/*.xml