Skip to content

Commit 5dbdb34

Browse files
committed
chore: update Jacoco to support JDK 25
1 parent 6268341 commit 5dbdb34

File tree

1 file changed

+30
-1
lines changed

1 file changed

+30
-1
lines changed

pom.xml

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,6 +505,8 @@
505505
<axis2_version>${project.version}</axis2_version>
506506
<project.build.outputTimestamp>2025-03-04T22:45:29Z</project.build.outputTimestamp>
507507
<maven.compiler.release>17</maven.compiler.release>
508+
<jacoco.version>0.8.14</jacoco.version>
509+
<asm.version>9.9</asm.version>
508510
</properties>
509511

510512
<dependencyManagement>
@@ -1292,7 +1294,7 @@
12921294
<plugin>
12931295
<groupId>org.jacoco</groupId>
12941296
<artifactId>jacoco-maven-plugin</artifactId>
1295-
<version>0.8.13</version>
1297+
<version>0.8.14</version>
12961298
<executions>
12971299
<execution>
12981300
<id>prepare-agent</id>
@@ -1368,6 +1370,33 @@
13681370
</goals>
13691371
</execution>
13701372
</executions>
1373+
<dependencies>
1374+
<dependency>
1375+
<groupId>org.jacoco</groupId>
1376+
<artifactId>org.jacoco.report</artifactId>
1377+
<version>${jacoco.version}</version>
1378+
</dependency>
1379+
<dependency>
1380+
<groupId>org.jacoco</groupId>
1381+
<artifactId>org.jacoco.core</artifactId>
1382+
<version>${jacoco.version}</version>
1383+
</dependency>
1384+
<dependency>
1385+
<groupId>org.ow2.asm</groupId>
1386+
<artifactId>asm</artifactId>
1387+
<version>${asm.version}</version>
1388+
</dependency>
1389+
<dependency>
1390+
<groupId>org.ow2.asm</groupId>
1391+
<artifactId>asm-commons</artifactId>
1392+
<version>${asm.version}</version>
1393+
</dependency>
1394+
<dependency>
1395+
<groupId>org.ow2.asm</groupId>
1396+
<artifactId>asm-tree</artifactId>
1397+
<version>${asm.version}</version>
1398+
</dependency>
1399+
</dependencies>
13711400
</plugin>
13721401
<plugin><!-- Always build source JARs -->
13731402
<artifactId>maven-source-plugin</artifactId>

0 commit comments

Comments
 (0)