Files
kotlin-fork/idea/testData/configuration/gradle/withJava9ModuleInfo/build_after.gradle
T
2017-10-10 16:29:22 +03:00

33 lines
622 B
Groovy
Vendored

apply plugin: 'java'
apply plugin: 'kotlin'
sourceCompatibility = 1.9
version = '1.0'
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
}
buildscript {
ext.kotlin_version = '$VERSION$'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}