22 lines
251 B
Kotlin
Vendored
22 lines
251 B
Kotlin
Vendored
import org.gradle.api.JavaVersion.VERSION_1_7
|
|
|
|
plugins {
|
|
application
|
|
}
|
|
|
|
apply {
|
|
plugin("kotlin")
|
|
}
|
|
|
|
application {
|
|
mainClassName = "samples.HelloWorld"
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
testCompile("junit:junit:4.12")
|
|
}
|