From 27783328a5e54802f43a13821dd7e9dbba26bad1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Henning?= <soeren.henning@email.uni-kiel.de> Date: Fri, 14 Jan 2022 14:59:32 +0100 Subject: [PATCH] Replace jcenter() with mavenCentral() --- theodolite-benchmarks/beam-commons/build.gradle | 2 +- .../buildSrc/src/main/groovy/theodolite.beam.gradle | 2 +- .../buildSrc/src/main/groovy/theodolite.flink.gradle | 2 +- .../buildSrc/src/main/groovy/theodolite.kstreams.gradle | 2 +- .../buildSrc/src/main/groovy/theodolite.load-generator.gradle | 2 +- theodolite-benchmarks/flink-commons/build.gradle | 2 +- theodolite-benchmarks/kstreams-commons/build.gradle | 2 +- theodolite-benchmarks/load-generator-commons/build.gradle | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/theodolite-benchmarks/beam-commons/build.gradle b/theodolite-benchmarks/beam-commons/build.gradle index 66ec44ad7..a809f6bc4 100644 --- a/theodolite-benchmarks/beam-commons/build.gradle +++ b/theodolite-benchmarks/beam-commons/build.gradle @@ -3,7 +3,7 @@ plugins { } repositories { - jcenter() + mavenCentral() maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } diff --git a/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.beam.gradle b/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.beam.gradle index 09e36d521..41d1ae4f2 100644 --- a/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.beam.gradle +++ b/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.beam.gradle @@ -9,7 +9,7 @@ plugins { tasks.distZip.enabled = false repositories { - jcenter() + mavenCentral() maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } diff --git a/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.flink.gradle b/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.flink.gradle index 26a827b60..f5e93dd88 100644 --- a/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.flink.gradle +++ b/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.flink.gradle @@ -25,7 +25,7 @@ ext { } repositories { - jcenter() + mavenCentral() maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } diff --git a/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.kstreams.gradle b/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.kstreams.gradle index eece7b835..da2d42176 100644 --- a/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.kstreams.gradle +++ b/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.kstreams.gradle @@ -9,7 +9,7 @@ plugins { tasks.distZip.enabled = false repositories { - jcenter() + mavenCentral() maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } diff --git a/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.load-generator.gradle b/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.load-generator.gradle index c6c2b6057..fb4fd89d1 100644 --- a/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.load-generator.gradle +++ b/theodolite-benchmarks/buildSrc/src/main/groovy/theodolite.load-generator.gradle @@ -9,7 +9,7 @@ plugins { tasks.distZip.enabled = false repositories { - jcenter() + mavenCentral() maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } diff --git a/theodolite-benchmarks/flink-commons/build.gradle b/theodolite-benchmarks/flink-commons/build.gradle index edd48c914..a3a4a3575 100644 --- a/theodolite-benchmarks/flink-commons/build.gradle +++ b/theodolite-benchmarks/flink-commons/build.gradle @@ -8,7 +8,7 @@ ext { } repositories { - jcenter() + mavenCentral() maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } diff --git a/theodolite-benchmarks/kstreams-commons/build.gradle b/theodolite-benchmarks/kstreams-commons/build.gradle index c5a880acd..7683ffe39 100644 --- a/theodolite-benchmarks/kstreams-commons/build.gradle +++ b/theodolite-benchmarks/kstreams-commons/build.gradle @@ -3,7 +3,7 @@ plugins { } repositories { - jcenter() + mavenCentral() maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } diff --git a/theodolite-benchmarks/load-generator-commons/build.gradle b/theodolite-benchmarks/load-generator-commons/build.gradle index 118f3e648..f2aa10b07 100644 --- a/theodolite-benchmarks/load-generator-commons/build.gradle +++ b/theodolite-benchmarks/load-generator-commons/build.gradle @@ -3,7 +3,7 @@ plugins { } repositories { - jcenter() + mavenCentral() maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } -- GitLab