Skip to content

Commit f0d545d

Browse files
build: Updated Jacoco and Maven bundle plugin (#234)
-- in order to build on JDK 17 & 21. --------- Signed-off-by: Jay Jay Billings <jayjaybillings@gmail.com>
1 parent f00180e commit f0d545d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
java: [ '8', '11' ]
18+
java: [ '8', '11' , '17', '21' ]
1919

2020
steps:
2121
- uses: actions/checkout@v4
@@ -32,4 +32,4 @@ jobs:
3232
if: always()
3333
uses: EnricoMi/publish-unit-test-result-action@v2
3434
with:
35-
files: target/surefire-reports/*.xml
35+
files: target/surefire-reports/*.xml

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@
252252
<plugin>
253253
<groupId>org.apache.felix</groupId>
254254
<artifactId>maven-bundle-plugin</artifactId>
255-
<version>4.2.1</version>
255+
<version>5.1.1</version>
256256
<configuration>
257257
<instructions>
258258
<Export-Package>org.locationtech.spatial4j*;version=${project.version}</Export-Package>
@@ -269,7 +269,7 @@
269269
<plugin>
270270
<groupId>org.jacoco</groupId>
271271
<artifactId>jacoco-maven-plugin</artifactId>
272-
<version>0.8.2</version>
272+
<version>0.8.4</version>
273273
<executions>
274274
<execution>
275275
<id>prepare-agent</id>

0 commit comments

Comments
 (0)