我正在尝试使用windows中的intellij构思来编译flink,并遵循所有指令“https://ci.apache.org/projects/flink/flink-docs-release-1.4/internals/ide_setup.html”。但在构建项目时,我遇到了这个错误:
java:package org.apache.flink.runtime.testingUtils不存在
答案 0 :(得分:0)
尝试将此添加到您的pom.xml:
<!-- https://mvnrepository.com/artifact/org.apache.flink/flink-test-utils -->
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-test-utils</artifactId>
<version>0.10.2</version>
<scope>test</scope>
</dependency>
然后运行&#34; mvn clean install&#34;在终端。