Apache Flink を実行しようとしていますが、依存関係が利用できないというエラーが発生します。モジュールflink-streaming-java
はまだ利用可能ですか。
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-streaming-java</artifactId>
<version>0.10-SNAPSHOT</version>
<scope>test</scope>
<type>test-jar</type>
</dependency>
私は 0.9.1 といくつかのバージョンを使用しましたが、どれも機能しませんでした。
flink-streaming-java でさらに確認するとhttps://github.com/apache/flink/blob/master/flink-streaming-java/pom.xml
見つかった -
<!-- disable fork reuse for the streaming project, because of
incorrect declaration of tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<reuseForks>false</reuseForks>
</configuration>
</plugin>