Skip to content

Commit 06d012d

Browse files
committed
add excluded files as jacoco is not compatible with java 24
1 parent 3abb858 commit 06d012d

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

gapic-generator-java-pom-parent/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,11 @@
167167
</goals>
168168
<configuration>
169169
<propertyName>surefire.jacoco.args</propertyName>
170+
<excludes>
171+
<exclude>sun/**</exclude>
172+
<exclude>jdk/**</exclude>
173+
<exclude>java/**</exclude>
174+
</excludes>
170175
</configuration>
171176
</execution>
172177
<execution>

gapic-generator-java/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,13 @@
336336
<goals>
337337
<goal>prepare-agent</goal>
338338
</goals>
339+
<configuration>
340+
<excludes>
341+
<exclude>sun/**</exclude>
342+
<exclude>jdk/**</exclude>
343+
<exclude>java/**</exclude>
344+
</excludes>
345+
</configuration>
339346
</execution>
340347
<execution>
341348
<id>report</id>

0 commit comments

Comments
 (0)