45 lines
823 B
Groovy
45 lines
823 B
Groovy
plugins {
|
|
id 'org.jetbrains.kotlin.jvm' version '1.2.71'
|
|
id 'maven'
|
|
}
|
|
|
|
group 'org.openrndr.extra'
|
|
version '0.0.1'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
ext {
|
|
openrndrVersion = "0.4.0-SNAPSHOT"
|
|
}
|
|
|
|
|
|
subprojects {
|
|
|
|
apply plugin: 'kotlin'
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
maven {
|
|
url="https://dl.bintray.com/openrndr/openrndr"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile "org.openrndr:openrndr-core:$openrndrVersion"
|
|
compile group: 'org.jetbrains.kotlinx', name: 'kotlinx-coroutines-core', version: '0.27.0'
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
}
|
|
compileTestKotlin {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
} |