31 lines
No EOL
792 B
Kotlin
31 lines
No EOL
792 B
Kotlin
plugins {
|
|
id("java")
|
|
id("java-library")
|
|
}
|
|
|
|
group = "de.kentoj.scrow"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(platform("org.junit:junit-bom:5.10.0"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
|
|
|
|
// https://mvnrepository.com/artifact/org.jetbrains/annotations
|
|
api("org.jetbrains:annotations:26.0.2-1")
|
|
|
|
// https://projectreactor.io/docs/core/release/reference/gettingStarted.html
|
|
api(platform("io.projectreactor:reactor-bom:2025.0.3"))
|
|
api("io.projectreactor:reactor-core")
|
|
|
|
// https://mvnrepository.com/artifact/com.google.guava/guava
|
|
api("com.google.guava:guava:33.5.0-jre")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
} |