18 lines
311 B
Plaintext
18 lines
311 B
Plaintext
plugins {
|
|
id("org.jetbrains.kotlin.jvm") version "1.4.10"
|
|
application
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation("org.jetbrains.kotlin:kotlin-test")
|
|
testImplementation("org.jetbrains.kotlin:kotlin-test-junit:1.4.10")
|
|
}
|
|
|
|
application {
|
|
mainClassName = "rps.GameKt"
|
|
}
|