From 88ab6b60ca566ade501d3d36bc3521812bdc3723 Mon Sep 17 00:00:00 2001 From: Jens Schauder Date: Thu, 28 Sep 2023 09:45:07 +0200 Subject: [PATCH] Remove excludes for maven test execution. Maven Surefire and Failsafe plugins by default do not run inner classes, no matter if they are `@Nested` or just plain static inner classes. This change removes this default exclude. Closes #1627 See https://maven.apache.org/surefire/maven-surefire-plugin/test-mojo.html#excludes --- pom.xml | 3 +++ spring-data-jdbc/pom.xml | 13 +++++++++++++ spring-data-r2dbc/pom.xml | 3 +++ 3 files changed, 19 insertions(+) diff --git a/pom.xml b/pom.xml index bfb0965512..54ccf77b4c 100644 --- a/pom.xml +++ b/pom.xml @@ -285,6 +285,9 @@ **/*IntegrationTests.java + + + diff --git a/spring-data-jdbc/pom.xml b/spring-data-jdbc/pom.xml index c2f44d3f96..abfa09dbb7 100644 --- a/spring-data-jdbc/pom.xml +++ b/spring-data-jdbc/pom.xml @@ -251,6 +251,9 @@ hsql + + + @@ -277,6 +280,9 @@ **/*IntegrationTests.java + + + postgres @@ -305,6 +311,7 @@ **/*IntegrationTests.java + h2 @@ -320,6 +327,7 @@ **/*IntegrationTests.java + mysql @@ -335,6 +343,7 @@ **/*IntegrationTests.java + postgres @@ -350,6 +359,7 @@ **/*IntegrationTests.java + mariadb @@ -365,6 +375,7 @@ **/*IntegrationTests.java + db2 @@ -380,6 +391,7 @@ **/*IntegrationTests.java + oracle @@ -395,6 +407,7 @@ **/*IntegrationTests.java + mssql diff --git a/spring-data-r2dbc/pom.xml b/spring-data-r2dbc/pom.xml index a60f8e183a..d65f06a082 100644 --- a/spring-data-r2dbc/pom.xml +++ b/spring-data-r2dbc/pom.xml @@ -375,6 +375,9 @@ **/*Tests.java + + +