You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
311 B
Kotlin
18 lines
311 B
Kotlin
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"
|
|
}
|