30 lines
517 B
Groovy
30 lines
517 B
Groovy
|
group 'com.rhubarb_lip_sync'
|
||
|
version '1.0-SNAPSHOT'
|
||
|
|
||
|
buildscript {
|
||
|
ext.kotlin_version = '1.1.4-3'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
apply plugin: 'kotlin'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
|
||
|
}
|
||
|
|
||
|
compileKotlin {
|
||
|
kotlinOptions.jvmTarget = "1.8"
|
||
|
}
|
||
|
compileTestKotlin {
|
||
|
kotlinOptions.jvmTarget = "1.8"
|
||
|
}
|