Files
kotlin-fork/idea/testData/configuration/gsk/eapVersion/build_after.gradle.kts
T
2020-12-09 18:16:06 +03:00

21 lines
316 B
Kotlin
Vendored

import org.gradle.api.JavaVersion.VERSION_1_7
plugins {
application
kotlin("jvm") version "$VERSION$"
}
application {
mainClassName = "samples.HelloWorld"
}
repositories {
jcenter()
}
dependencies {
testCompile("junit:junit:4.12")
implementation(kotlin("stdlib"))
}
// VERSION: $VERSION$