Switch to OPENRNDR 0.4.0-rc.5, ORX 0.4.0-rc.5
This commit is contained in:
@@ -1,8 +1,5 @@
|
|||||||
# OPENRNDR template project
|
# 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
|
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
|
The template consists of a configuration for Gradle and an example OPENRNDR program. The Gradle configuration should serve as the
|
||||||
|
|||||||
@@ -1,16 +1,16 @@
|
|||||||
enableFeaturePreview("VERSION_CATALOGS")
|
enableFeaturePreview("VERSION_CATALOGS")
|
||||||
rootProject.name = "openrndr-template"
|
rootProject.name = "openrndr-template"
|
||||||
|
|
||||||
val openrndrUseSnapshot = true
|
val openrndrUseSnapshot = false
|
||||||
val orxUseSnapshot = true
|
val orxUseSnapshot = false
|
||||||
val ormlUseSnapshot = true
|
val ormlUseSnapshot = true
|
||||||
|
|
||||||
dependencyResolutionManagement {
|
dependencyResolutionManagement {
|
||||||
versionCatalogs {
|
versionCatalogs {
|
||||||
create("libs") {
|
create("libs") {
|
||||||
version("kotlin", "1.6.0")
|
version("kotlin", "1.6.0")
|
||||||
version("openrndr", if (openrndrUseSnapshot) "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")
|
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")
|
version("orml", if (ormlUseSnapshot) "0.5.1-SNAPSHOT" else "0.4.0")
|
||||||
|
|
||||||
alias("kotlin-jvm").toPluginId("org.jetbrains.kotlin.jvm").version("1.6.0")
|
alias("kotlin-jvm").toPluginId("org.jetbrains.kotlin.jvm").version("1.6.0")
|
||||||
|
|||||||
Reference in New Issue
Block a user