rmetzger commented on a change in pull request #11983: URL: https://github.com/apache/flink/pull/11983#discussion_r420202465
########## File path: flink-end-to-end-tests/flink-end-to-end-tests-common/src/main/java/org/apache/flink/tests/util/flink/SQLJobSubmission.java ########## @@ -90,6 +91,11 @@ public SQLJobSubmissionBuilder addJar(Path jarFile) { return this; } + public SQLJobSubmissionBuilder addJars(List<Path> jarFiles) { + this.jars.addAll(jarFiles.stream().map(path -> path.toAbsolutePath().toString()).collect(Collectors.toList())); Review comment: Ah, sweet! Thanks! You see I haven't worked much with Java 8 :) ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org