From 78aa295bfbca41964a8dfc9794aa63b09b00bdf8 Mon Sep 17 00:00:00 2001 From: lorenz <stu203404@mail.uni-kiel.de> Date: Wed, 27 Oct 2021 15:51:40 +0200 Subject: [PATCH] First usecase using new beam plugin --- .../uc1-beam-flink/build.gradle | 25 ++----------------- 1 file changed, 2 insertions(+), 23 deletions(-) diff --git a/theodolite-benchmarks/uc1-beam-flink/build.gradle b/theodolite-benchmarks/uc1-beam-flink/build.gradle index be973e271..e7ac89dfa 100644 --- a/theodolite-benchmarks/uc1-beam-flink/build.gradle +++ b/theodolite-benchmarks/uc1-beam-flink/build.gradle @@ -1,30 +1,9 @@ plugins { - id 'theodolite.kstreams' + id 'theodolite.beam' } -allprojects { - repositories { - maven { - url 'https://packages.confluent.io/maven/' - } - mavenCentral() - } -} - - dependencies { - compile group: 'org.apache.beam', name: 'beam-sdks-java-core', version: '2.22.0' - compile group: 'org.apache.beam', name: 'beam-runners-flink-1.12', version: '2.27.0' - - compile('org.apache.beam:beam-sdks-java-io-kafka:2.22.0'){ - exclude group: 'org.apache.kafka', module: 'kafka-clients' - } - compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.30' - - runtime 'org.apache.beam:beam-runners-direct-java:2.22.0' - runtime 'org.slf4j:slf4j-api:1.7.32' - runtime 'org.slf4j:slf4j-jdk14:1.7.32' + compile group: 'org.apache.beam', name: 'beam-runners-flink-1.12', version: '2.27.0' } - mainClassName = "application.Uc1ApplicationBeam" -- GitLab