Use openrndr-dependency-catalog and openrndr-module-catalog to resolve dependencies. Publish orx-module-catalog (#374)

This commit is contained in:
Edwin Jakobs
2025-09-13 00:54:51 -07:00
committed by GitHub
parent 4ddb73a596
commit a913f3f370
72 changed files with 407 additions and 304 deletions

View File

@@ -6,15 +6,15 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
api(libs.openrndr.math)
api(libs.openrndr.shape)
api(openrndr.math)
api(openrndr.shape)
implementation(project(":orx-noise"))
}
}
val commonTest by getting {
dependencies {
implementation(project(":orx-shapes"))
implementation(libs.openrndr.shape)
implementation(openrndr.shape)
}
}
@@ -22,7 +22,7 @@ kotlin {
dependencies {
implementation(project(":orx-shapes"))
implementation(project(":orx-noise"))
implementation(libs.openrndr.shape)
implementation(openrndr.shape)
}
}
}