From 3a09efee5e5a5ca366afd485cb1bc7933cf179cb Mon Sep 17 00:00:00 2001 From: Mahmoud Ben Hassine Date: Mon, 20 Jul 2020 15:44:52 +0200 Subject: [PATCH] Add Apache's maven staging repository This is required to build against Spring for Apache Kafka 2.6.0-SNAPSHOT which brings kafka-clients:2.6.0. kafka-clients:2.6.0 is actually an RC version and is not promoted to central yet. The staging repository will be removed once kafka-clients:2.6.0 is promoted to maven central. --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index 040b48256..fb61cdd27 100644 --- a/build.gradle +++ b/build.gradle @@ -37,6 +37,7 @@ allprojects { group = 'org.springframework.batch' repositories { + maven { url 'https://repository.apache.org/content/groups/staging/' } // TODO to remove when kafka-clients 2.6.0 is promoted to central maven { url 'https://repo.spring.io/libs-snapshot' } maven { url 'https://repo.spring.io/libs-milestone' } maven { url 'https://repo.spring.io/plugins-release' }