From 89767de35a0042c2f1be6f73d7aeb2bf120e4445 Mon Sep 17 00:00:00 2001 From: vechro Date: Sat, 4 Mar 2023 12:12:00 +0200 Subject: [PATCH] Remove hardcoded mavenLocal() logic --- build.gradle.kts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 66b4dfd..e4a9ebe 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -94,6 +94,7 @@ plugins { } repositories { + mavenLocal() mavenCentral() } @@ -254,12 +255,6 @@ class Openrndr { fun orxNatives(module: String) = "org.openrndr.extra:$module-natives-$os:$orxVersion" init { - repositories { - if (listOf(openrndrVersion, orxVersion, ormlVersion).any { "SNAPSHOT" in it }) { - mavenLocal() - } - maven(url = "https://maven.openrndr.org") - } dependencies { runtimeOnly(openrndr("gl3")) runtimeOnly(openrndrNatives("gl3"))