28 lines
383 B
Plaintext
28 lines
383 B
Plaintext
plugins {
|
|
kotlin("jvm") version "1.8.20"
|
|
application
|
|
}
|
|
|
|
group = "com.ray650128"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test"))
|
|
implementation("com.squareup.retrofit2:retrofit:2.9.0")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
}
|
|
|
|
application {
|
|
mainClass.set("MainKt")
|
|
} |