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
The following commit(s) were added to refs/heads/master by this push:
new 36caa02bf73 [FLINK-33291][build] Sets the enforced range for Maven and
JDK within the release profile
36caa02bf73 is described below
commit 36caa02bf73bb4e1644451f71ca07860360ec0d8
Author: Matthias Pohl <[email protected]>
AuthorDate: Tue Oct 17 15:23:15 2023 +0200
[FLINK-33291][build] Sets the enforced range for Maven and JDK within the
release profile
---
pom.xml | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/pom.xml b/pom.xml
index 1812449bdf1..01536764538 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1365,11 +1365,13 @@ under the License.
</goals>
<configuration>
<rules>
+
<!-- versions for certain build tools are enforced to match the CI setup -->
+
<!-- the rules below should stay in sync with Flink Release wiki documentation
and the CI scripts -->
<requireMavenVersion>
-
<version>3.8.6</version>
+
<version>[3.8.6]</version>
</requireMavenVersion>
<requireJavaVersion>
-
<version>1.8.0</version>
+
<version>[1.8.0,1.8.1)</version>
</requireJavaVersion>
</rules>
</configuration>