coroutines/lib/build.gradle.kts
2025-05-07 09:41:33 -04:00

29 lines
No EOL
475 B
Kotlin

version = "0.1.0"
group = "com.parkertenbroeck.generators"
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()
}