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") + } } }