mirror of
https://github.com/usbharu/http-signature.git
synced 2026-09-19 23:45:47 +00:00
29 lines
405 B
Kotlin
29 lines
405 B
Kotlin
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")
|
|
}
|