Bump to OPENRNDR 0.3.42-rc.1

This commit is contained in:
Edwin Jakobs
2020-04-27 10:32:45 +02:00
parent a1f4567d60
commit 7fbc02deb4

View File

@@ -16,7 +16,7 @@ buildscript {
apply plugin: 'org.jetbrains.dokka' apply plugin: 'org.jetbrains.dokka'
project.ext { project.ext {
openrndrVersion = "0.4.0-SNAPSHOT" openrndrVersion = "0.3.42-rc.1"
kotlinVersion = "1.3.72" kotlinVersion = "1.3.72"
spekVersion = "2.0.10" spekVersion = "2.0.10"
libfreenectVersion = "0.5.7-1.5.3" libfreenectVersion = "0.5.7-1.5.3"
@@ -62,7 +62,6 @@ allprojects {
group 'org.openrndr.extra' group 'org.openrndr.extra'
repositories { repositories {
mavenLocal()
mavenCentral() mavenCentral()
jcenter() jcenter()
maven { maven {
@@ -133,7 +132,13 @@ allprojects {
task collectScreenshots { task collectScreenshots {
doFirst { doFirst {
def demoProjects = project.subprojects.findAll { it.sourceSets.hasProperty("demo") } def demoProjects = project.subprojects.findAll { it.sourceSets.hasProperty("demo") }
for (sub in demoProjects) { for (sub in demoProjects) {
if (sub.name == "orx-rabbit-control")
continue
if (sub.name == "orx-runway")
continue
def set = sub.sourceSets.demo def set = sub.sourceSets.demo
def ucl = new URLClassLoader(set.runtimeClasspath.collect { it.toURI().toURL() } as URL[]) def ucl = new URLClassLoader(set.runtimeClasspath.collect { it.toURI().toURL() } as URL[])
for (x in set.output) { for (x in set.output) {