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

@@ -13,6 +13,28 @@ val openrndrClassifier: String by (gradle as ExtensionAware).extra(
}
)
dependencyResolutionManagement {
repositories {
mavenCentral()
mavenLocal {
include("org.openrndr")
}
}
versionCatalogs {
// We use a regex to get the openrndr version from the primary catalog as there is no public Gradle API to parse catalogs.
val regEx = Regex("^openrndr[ ]*=[ ]*(?:\\{[ ]*require[ ]*=[ ]*)?\"(.*)\"[ ]*(?:\\})?", RegexOption.MULTILINE)
val openrndrVersion = regEx.find(File(rootDir,"gradle/libs.versions.toml").readText())?.groupValues?.get(1) ?: error("can't find openrndr version")
create("sharedLibs") {
from("org.openrndr:openrndr-dependency-catalog:$openrndrVersion")
}
create("openrndr") {
from("org.openrndr:openrndr-module-catalog:$openrndrVersion")
}
}
}
include(
listOf(
"openrndr-demos",
@@ -91,6 +113,8 @@ include(
"orx-view-box",
"orx-text-on-contour",
"orx-text-writer",
"orx-turtle"
"orx-turtle",
"orx-module-catalog"
)
)