2ec1a4311a
#KT-14965 Fixed
32 lines
407 B
Kotlin
Vendored
32 lines
407 B
Kotlin
Vendored
import org.gradle.api.JavaVersion.VERSION_1_7
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath(kotlinModule("gradle-plugin", kotlin_version))
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
application
|
|
}
|
|
|
|
apply {
|
|
plugin("kotlin")
|
|
}
|
|
|
|
application {
|
|
mainClassName = "samples.HelloWorld"
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
testCompile("junit:junit:4.12")
|
|
}
|