Hi Flink devs, RC0 for Apache Flink 1.9.0 has been created. This has all the artifacts that we would typically have for a release, except for a source code tag and a PR for the release announcement.
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 1C1E2394D3194E1944613488F320986D35C33D6A [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! Cheers, Gordon [1] https://home.apache.org/~tzulitai/flink-1.9.0-rc0/ [2] https://dist.apache.org/repos/dist/release/flink/KEYS [3] https://repository.apache.org/content/repositories/orgapacheflink-1231/ [4] ``` <settings> <activeProfiles> <activeProfile>flink-1.9.0</activeProfile> </activeProfiles> <profiles> <profile> <id>flink-1.9.0</id> <repositories> <repository> <id>flink-1.9.0</id> <url> https://repository.apache.org/content/repositories/orgapacheflink-1231/ </url> </repository> <repository> <id>archetype</id> <url> https://repository.apache.org/content/repositories/orgapacheflink-1231/ </url> </repository> </repositories> </profile> </profiles> </settings> ```