This is an automated email from the ASF dual-hosted git repository. mapohl pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink.git
commit f4c0b716b01200d5e02bb49d9d859934867080a4 Author: Matthias Pohl <[email protected]> AuthorDate: Thu Jan 11 12:50:38 2024 +0100 [FLINK-34062][build] Adds JDK 21 surefire configuration. --- pom.xml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pom.xml b/pom.xml index fbf34fcd46b..f7de4a97b5b 100644 --- a/pom.xml +++ b/pom.xml @@ -1169,6 +1169,17 @@ under the License. <skip>true</skip> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <excludedGroups> + ${github-actions.surefire.excludedGroups}, + org.apache.flink.testutils.junit.FailsOnJava11, + org.apache.flink.testutils.junit.FailsOnJava17, + </excludedGroups> + </configuration> + </plugin> </plugins> </pluginManagement> </build>
