java.lang.NoSuchMethodError no Flink

Estou tentando ler o arquivo usando:

final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment();
DataSet<String> line = env.readTextFile("file:///pathtofile/myfile.txt");

Eu recebo o seguinte erro:

java.lang.NoSuchMethodError: org.apache.flink.api.common.io.DelimitedInputFormat: method <init>(Lorg/apache/flink/core/fs/Path;)V not found

Estou usando o flink versão 1.3.2, versão java "1.8.0_91"

questionAnswers(6)

yourAnswerToTheQuestion