coroutines/lib/build.gradle.kts
2025-05-05 12:30:33 -04:00

27 lines
No EOL
433 B
Kotlin

version = "0.1.0"
plugins {
`java-library`
}
repositories {
mavenCentral()
}
dependencies {
// Use JUnit Jupiter for testing.
testImplementation(libs.junit.jupiter)
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(24)
}
}
tasks.named<Test>("test") {
// Use JUnit Platform for unit tests.
useJUnitPlatform()
}