From a68e5c6c6e6837736844f4379e277d054580ac06 Mon Sep 17 00:00:00 2001
From: lorenz <stu203404@mail.uni-kiel.de>
Date: Fri, 7 Jan 2022 17:07:45 +0100
Subject: [PATCH] Replace gradle runtime with runtimeOnly in beam commons

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

diff --git a/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.beam.gradle b/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.beam.gradle
index 20823e39c..09e36d521 100644
--- a/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.beam.gradle
+++ b/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.beam.gradle
@@ -36,9 +36,9 @@ dependencies {
     }
     implementation group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.30'
 
-    runtime "org.apache.beam:beam-runners-direct-java:${apacheBeamVersion}"
-    runtime 'org.slf4j:slf4j-api:1.7.32'
-    runtime 'org.slf4j:slf4j-jdk14:1.7.32'
+    runtimeOnly "org.apache.beam:beam-runners-direct-java:${apacheBeamVersion}"
+    runtimeOnly 'org.slf4j:slf4j-api:1.7.32'
+    runtimeOnly 'org.slf4j:slf4j-jdk14:1.7.32'
 
     // Use JUnit test framework
     testImplementation 'junit:junit:4.12'
-- 
GitLab