Skip to content

Commit bfb0dbd

Browse files
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent f87757b commit bfb0dbd

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

pom.xml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,12 +247,19 @@
247247
<!-- Tests are only ever run on a modern JDK (main sources keep 1.8 for
248248
downstream compatibility). This mirrors the Gradle build, where the 1.8
249249
source/target applied to compileJava only, not compileTestJava. -->
250-
<testSource>17</testSource>
251-
<testTarget>17</testTarget>
252250
<compilerArgs>
253251
<arg>-parameters</arg>
254252
</compilerArgs>
255253
</configuration>
254+
<executions>
255+
<execution>
256+
<id>default-testCompile</id>
257+
<configuration>
258+
<source>17</source>
259+
<target>17</target>
260+
</configuration>
261+
</execution>
262+
</executions>
256263
</plugin>
257264

258265
<plugin>

0 commit comments

Comments
 (0)