Apache publishes SNAPSHOT artifacts only for the dedicated Maven repository. Please note that these artifacts are for development purposes only. They are not part of the official release of Apache Flink!
You need to add the following repository configuration to pom.xml to receive SNAPSHOT artifacts:
<repositories> <repository> <id>apache.snapshots</id> <name>Apache Development Snapshot Repository</name> <url>https://repository.apache.org/content/repositories/snapshots/</url> <releases><enabled>false</enabled></releases> <snapshots><enabled>true</enabled></snapshots> </repository> </repositories>
Alternatively, you can download the latest Flink code and create it on your local machine.
source share