firefox123456 opened a new pull request, #26289:
URL: https://github.com/apache/flink/pull/26289
### What is the purpose of the change
---
Flink version requirements
Maven 3.8.6 (recommended or later)
Java 8 (deprecated) or Java 11
But the pom file under Flink is configured
```
<configuration>
<rules>
<requireMavenVersion>
<version>[3.8.6]</version>
</requireMavenVersion>
<requireJavaVersion>
<version>${target.java.version}</version>
</requireJavaVersion>
</rules>
</configuration>
```
### What have I done
---
I changed the version limits in the corresponding pom file in the flink root
directory
```
<configuration>
<rules>
<requireMavenVersion>
<version>[3.8.6,]</version>
</requireMavenVersion>
<requireJavaVersion>
<version>${target.java.version}</version>
</requireJavaVersion>
</rules>
</configuration>
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]