This is an automated email from the ASF dual-hosted git repository. twalthr pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink.git
commit 44b2756b3d7dd42d7b9691da2463a1f5f50fee01 Author: slinkydeveloper <[email protected]> AuthorDate: Thu Dec 2 11:01:14 2021 +0100 [hotfix][dist] flink-json and flink-csv are now declared as dependencies in the flink-dist to enforce the reactor order Signed-off-by: slinkydeveloper <[email protected]> --- flink-dist/pom.xml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/flink-dist/pom.xml b/flink-dist/pom.xml index 47c6062..ffe067c 100644 --- a/flink-dist/pom.xml +++ b/flink-dist/pom.xml @@ -343,6 +343,20 @@ under the License. <dependency> <groupId>org.apache.flink</groupId> + <artifactId>flink-json</artifactId> + <version>${project.version}</version> + <scope>provided</scope> + </dependency> + + <dependency> + <groupId>org.apache.flink</groupId> + <artifactId>flink-csv</artifactId> + <version>${project.version}</version> + <scope>provided</scope> + </dependency> + + <dependency> + <groupId>org.apache.flink</groupId> <artifactId>flink-azure-fs-hadoop</artifactId> <version>${project.version}</version> <scope>provided</scope>
