Hi all, Apache Flink-1.11.0-RC1 has been created. It has all the artifacts that we would typically have for a release.
This preview-only RC is created only to drive the current testing efforts, and no official vote will take place. It includes the following: * The preview source release and binary convenience releases [1], which are signed with the key with fingerprint 2DA85B93244FDFA19A6244500653C0A2CEA00D0E [2], * All artifacts that would normally be deployed to the Maven Central Repository [3] To test with these artifacts, you can create a settings.xml file with the content shown below [4]. This settings file can be referenced in your maven commands via --settings /path/to/settings.xml. This is useful for creating a quickstart project based on the staged release and also for building against the staged jars. Happy testing! Best, Zhijiang [1] https://dist.apache.org/repos/dist/dev/flink/flink-1.11.0-rc1/ [2] https://dist.apache.org/repos/dist/release/flink/KEYS [3] https://repository.apache.org/content/repositories/orgapacheflink-1370/ [4] <settings> <activeProfiles> <activeProfile>flink-1.11.0</activeProfile> </activeProfiles> <profiles> <profile> <id>flink-1.11.0</id> <repositories> <repository> <id>flink-1.11.0</id> <url>https://repository.apache.org/content/repositories/orgapacheflink-1370/</url> </repository> <repository> <id>archetype</id> <url>https://repository.apache.org/content/repositories/orgapacheflink-1370/</url> </repository> </repositories> </profile> </profiles> </settings>