This is an automated email from the ASF dual-hosted git repository.
mapohl pushed a commit to branch release-1.16
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-1.16 by this push:
new a33d5326bd8 [FLINK-33291][build] Sets the enforced range for Maven and
JDK within the release profile
a33d5326bd8 is described below
commit a33d5326bd86562975426724a1ff76f3193a24a1
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 | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index 8ef7745b81f..95d73ff8f92 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1321,12 +1321,14 @@ 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>
<!-- maven version must be lower than 3.3. See FLINK-3158 -->
<version>(,3.3)</version>
</requireMavenVersion>
<requireJavaVersion>
-
<version>1.8.0</version>
+
<version>[1.8.0,1.8.1)</version>
</requireJavaVersion>
</rules>
</configuration>