Skip to content

Commit 4a20174

Browse files
committed
resolve processing core from official source
1 parent c046dd3 commit 4a20174

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

build.gradle.kts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -84,19 +84,13 @@ if(currentOS.isMacOsX) {
8484
// You can add additional repositories here if your dependencies are hosted elsewhere.
8585
repositories {
8686
mavenCentral()
87-
88-
// these two are needed to resolve processing4 from micycle1's repo
89-
maven { url = uri("https://jitpack.io") }
90-
maven { url = uri("https://jogamp.org/deployment/maven/") }
9187
}
9288

9389
// Add any external dependencies your library requires here.
9490
// The provided example uses Apache Commons Math. Replace or add as needed.
9591
dependencies {
9692
// resolve Processing core
97-
compileOnly(group = "com.github.micycle1", name = "processing-core-4", version = "4.3.1")
98-
// We are currently resolving from an unofficial, jitpack-enabled, processing4 repository.
99-
// Eventually, this will change to an official source.
93+
compileOnly(group = "org.processing", name = "core", version = "4.3.1")
10094

10195
// insert your external dependencies
10296
implementation(group = "org.apache.commons", name = "commons-math3", version = "3.6.1")

0 commit comments

Comments
 (0)