29 lines
405 B
Plaintext
29 lines
405 B
Plaintext
plugins {
|
|
kotlin("jvm") version "1.9.0"
|
|
application
|
|
}
|
|
|
|
group = "dev.usbharu"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation("org.junit.jupiter:junit-jupiter:5.8.1")
|
|
testImplementation("org.mockito:mockito-inline:5.2.0")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(11)
|
|
}
|
|
|
|
application {
|
|
mainClass.set("MainKt")
|
|
}
|