From 46fb734771f7521112db7b6b2222b2ce04cfc305 Mon Sep 17 00:00:00 2001 From: Edwin Jakobs Date: Tue, 16 Sep 2025 22:25:49 +0200 Subject: [PATCH] Fixed mavenLocal configuration --- buildSrc/settings.gradle.kts | 7 ++++++- settings.gradle.kts | 5 ++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/buildSrc/settings.gradle.kts b/buildSrc/settings.gradle.kts index 5c670cd..8dcea68 100644 --- a/buildSrc/settings.gradle.kts +++ b/buildSrc/settings.gradle.kts @@ -1,9 +1,14 @@ +rootProject.name = "buildSrc" + dependencyResolutionManagement { repositories { mavenCentral() gradlePluginPortal() mavenLocal { - include("org.openrndr") + content { + includeGroup("org.openrndr") + includeGroup("org.openrndr.extra") + } } } diff --git a/settings.gradle.kts b/settings.gradle.kts index 3a3c3b8..ee51656 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -11,7 +11,10 @@ dependencyResolutionManagement { repositories { mavenCentral() mavenLocal { - include("org.openrndr") + content { + includeGroup("org.openrndr") + includeGroup("org.openrndr.extra") + } } }