Skip to content

Commit c2fa950

Browse files
committed
chore: pin jacoco plugin versions
1 parent b619c6a commit c2fa950

File tree

1 file changed

+28
-5
lines changed

1 file changed

+28
-5
lines changed

pom.xml

Lines changed: 28 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -506,6 +506,7 @@
506506
<project.build.outputTimestamp>2025-03-04T22:45:29Z</project.build.outputTimestamp>
507507
<maven.compiler.release>17</maven.compiler.release>
508508
<jacoco.version>0.8.14</jacoco.version>
509+
<asm.version>9.9</asm.version>
509510
</properties>
510511

511512
<dependencyManagement>
@@ -1029,11 +1030,6 @@
10291030
<artifactId>byte-buddy</artifactId>
10301031
<version>1.18.1</version>
10311032
</dependency>
1032-
<dependency>
1033-
<groupId>org.jacoco</groupId>
1034-
<artifactId>org.jacoco.report</artifactId>
1035-
<version>${jacoco.version}</version>
1036-
</dependency>
10371033
</dependencies>
10381034
</dependencyManagement>
10391035

@@ -1374,6 +1370,33 @@
13741370
</goals>
13751371
</execution>
13761372
</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>
13771400
</plugin>
13781401
<plugin><!-- Always build source JARs -->
13791402
<artifactId>maven-source-plugin</artifactId>

0 commit comments

Comments
 (0)