From c38140a48b4224bde53610f872d4297d9da67c70 Mon Sep 17 00:00:00 2001 From: Claudine Date: Wed, 4 Dec 2024 13:06:06 +0000 Subject: [PATCH 1/2] resolve processing core from official source --- build.gradle.kts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 2b7a0f3..f9b2dfe 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -84,19 +84,13 @@ if(currentOS.isMacOsX) { // You can add additional repositories here if your dependencies are hosted elsewhere. repositories { mavenCentral() - - // these two are needed to resolve processing4 from micycle1's repo - maven { url = uri("https://jitpack.io") } - maven { url = uri("https://jogamp.org/deployment/maven/") } } // Add any external dependencies your library requires here. // The provided example uses Apache Commons Math. Replace or add as needed. dependencies { // resolve Processing core - compileOnly(group = "com.github.micycle1", name = "processing-core-4", version = "4.3.1") - // We are currently resolving from an unofficial, jitpack-enabled, processing4 repository. - // Eventually, this will change to an official source. + compileOnly(group = "org.processing", name = "core", version = "4.3.1") // insert your external dependencies implementation(group = "org.apache.commons", name = "commons-math3", version = "3.6.1") From 79a90053cd495c0d00f73e593283f71ec4dcc60a Mon Sep 17 00:00:00 2001 From: Claudine Date: Sat, 11 Jan 2025 11:03:28 +0000 Subject: [PATCH 2/2] add jogamp repository --- build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle.kts b/build.gradle.kts index f9b2dfe..2cdeace 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -84,6 +84,7 @@ if(currentOS.isMacOsX) { // You can add additional repositories here if your dependencies are hosted elsewhere. repositories { mavenCentral() + maven { url = uri("https://jogamp.org/deployment/maven/") } } // Add any external dependencies your library requires here.