Files
subconverter4j/build.gradle.kts
2024-01-24 14:57:41 +08:00

23 lines
352 B
Kotlin

plugins {
kotlin("jvm") version "1.9.21"
}
group = "org.subman"
version = "1.0-SNAPSHOT"
repositories {
maven("https://maven.aliyun.com/repository/public/")
mavenLocal()
mavenCentral()
}
dependencies {
testImplementation("org.jetbrains.kotlin:kotlin-test")
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(21)
}