Compare commits

...

2 Commits

Author SHA1 Message Date
Edwin Jakobs
ef25b9a101 Change maven url to https://maven.openrndr.org 2021-04-12 13:55:47 +02:00
Edwin Jakobs
acaa7ceeba Upgrade to Gradle 7.0, Kotlin 1.4.32 2021-04-10 18:08:42 +02:00
2 changed files with 5 additions and 5 deletions

View File

@@ -5,7 +5,7 @@ import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform
/* the name of this project, default is the template version but you are free to change these */ /* the name of this project, default is the template version but you are free to change these */
group = "org.openrndr.template" group = "org.openrndr.template"
version = "0.3.15" version = "0.3.17"
val applicationMainClass = "TemplateProgramKt" val applicationMainClass = "TemplateProgramKt"
@@ -121,11 +121,11 @@ enum class Logging {
/* What type of logging should this project use? */ /* What type of logging should this project use? */
val applicationLogging = Logging.FULL val applicationLogging = Logging.FULL
val kotlinVersion = "1.4.31" val kotlinVersion = "1.4.32"
plugins { plugins {
java java
kotlin("jvm") version("1.4.31") kotlin("jvm") version("1.4.32")
id("com.github.johnrengelman.shadow") version ("6.1.0") id("com.github.johnrengelman.shadow") version ("6.1.0")
id("org.beryx.runtime") version ("1.11.4") id("org.beryx.runtime") version ("1.11.4")
} }
@@ -135,7 +135,7 @@ repositories {
if (openrndrUseSnapshot || orxUseSnapshot) { if (openrndrUseSnapshot || orxUseSnapshot) {
mavenLocal() mavenLocal()
} }
maven(url = "https://dl.bintray.com/openrndr/openrndr") maven(url = "https://maven.openrndr.org")
} }
fun DependencyHandler.orx(module: String): Any { fun DependencyHandler.orx(module: String): Any {

View File

@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8-all.zip distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-bin.zip
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists