This is an automated email from the ASF dual-hosted git repository.
snuyanzin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new 1a5f86872d1 [hotfix] Use `systemPropertyVariables` instead of
`systemProperties`
1a5f86872d1 is described below
commit 1a5f86872d171a8e1a428b98c6459be1c0c78b42
Author: Sergey Nuyanzin <[email protected]>
AuthorDate: Sat Jul 11 13:28:22 2026 +0200
[hotfix] Use `systemPropertyVariables` instead of `systemProperties`
---
pom.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/pom.xml b/pom.xml
index ab03d8dbe34..32e2cfbae2d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1024,9 +1024,9 @@ under the License.
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
- <systemProperties>
+
<systemPropertyVariables>
<flink.tests.enable-adaptive-scheduler>true</flink.tests.enable-adaptive-scheduler>
- </systemProperties>
+
</systemPropertyVariables>
<excludedGroups>${surefire.excludedGroups.github-actions}${surefire.excludedGroups.adaptive-scheduler}${surefire.excludedGroups.jdk}</excludedGroups>
</configuration>
</plugin>