From 7fd251a31b3288009e534c96cc521caa592463aa Mon Sep 17 00:00:00 2001 From: Klaas Schuijtemaker Date: Mon, 17 Aug 2026 13:53:07 +0200 Subject: [PATCH] Resolve plugin dependencies from the Valtimo S3 release repository Add the S3 bucket that the backend now dual-publishes to as a dependency repository, so artifacts released there resolve without waiting for the Maven Central sync. --- build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle.kts b/build.gradle.kts index 1d35e27..f9375cf 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -38,6 +38,7 @@ allprojects { mavenCentral() maven { url = uri("https://s01.oss.sonatype.org/content/repositories/releases/") } maven { url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/") } + maven { url = uri("https://valtimo-releases.s3.eu-central-1.amazonaws.com/") } } }