Hideout/hideout-activitypub/build.gradle.kts

21 lines
259 B
Plaintext
Raw Permalink Normal View History

2024-06-01 09:23:44 +00:00
plugins {
kotlin("jvm") version "1.9.25"
2024-06-01 09:23:44 +00:00
}
group = "dev.usbharu"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(21)
}