first commit

This commit is contained in:
kento2 2026-02-14 10:54:24 +01:00
commit f0ea9603d5
14 changed files with 501 additions and 0 deletions

31
build.gradle.kts Normal file
View file

@ -0,0 +1,31 @@
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()
}