Switch to OPENRNDR 0.4.0-rc.5, ORX 0.4.0-rc.5

This commit is contained in:
Edwin Jakobs
2022-01-29 20:46:31 +01:00
parent 64aaa00524
commit ad3b2f8c7c
2 changed files with 4 additions and 7 deletions

View File

@@ -1,8 +1,5 @@
# OPENRNDR template project
Attention: you are using a template for OPENRNDR 0.4, which is currently not been released yet. This template assumes
that you have build and published `OPENRNDR-0.5.1-SNAPSHOT` and `ORX-0.5.1-SNAPSHOT` to your local maven repository.
A feature rich template for creating OPENRNDR programs based on Gradle/Kts
The template consists of a configuration for Gradle and an example OPENRNDR program. The Gradle configuration should serve as the

View File

@@ -1,16 +1,16 @@
enableFeaturePreview("VERSION_CATALOGS")
rootProject.name = "openrndr-template"
val openrndrUseSnapshot = true
val orxUseSnapshot = true
val openrndrUseSnapshot = false
val orxUseSnapshot = false
val ormlUseSnapshot = true
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
version("kotlin", "1.6.0")
version("openrndr", if (openrndrUseSnapshot) "0.5.1-SNAPSHOT" else "0.4.0")
version("orx", if (orxUseSnapshot) "0.5.1-SNAPSHOT" else "0.4.0")
version("openrndr", if (openrndrUseSnapshot) "0.5.1-SNAPSHOT" else "0.4.0-rc.5")
version("orx", if (orxUseSnapshot) "0.5.1-SNAPSHOT" else "0.4.0-rc.5")
version("orml", if (ormlUseSnapshot) "0.5.1-SNAPSHOT" else "0.4.0")
alias("kotlin-jvm").toPluginId("org.jetbrains.kotlin.jvm").version("1.6.0")