From b516d4ab5de23ddaa5390212794d3ff4b6f551ab Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=B6ren=20Henning?= <soeren.henning@email.uni-kiel.de>
Date: Tue, 4 Jan 2022 20:20:38 +0100
Subject: [PATCH] Fix dependency clash (Apache Commons bean utils)

---
 .../buildSrc/src/main/groovy/theodolite.beam.samza.gradle     | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.beam.samza.gradle b/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.beam.samza.gradle
index d3bd08f6f..73e916ccc 100644
--- a/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.beam.samza.gradle
+++ b/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.beam.samza.gradle
@@ -3,5 +3,7 @@ plugins {
 }
 
 dependencies {
-    compile group: 'org.apache.beam', name: 'beam-runners-samza', version: '2.22.0'
+    implementation('org.apache.beam:beam-runners-samza:2.22.0') {
+        exclude group: 'org.apache.samza', module: 'samza-yarn_2.11'
+    }
 }
\ No newline at end of file
-- 
GitLab