scrow-monorepo/build.gradle.kts
2026-02-14 14:04:36 +01:00

36 lines
No EOL
1.1 KiB
Kotlin

plugins {
id("java")
id("io.freefair.lombok") version "9.2.0" apply false
}
group = "de.kentoj.scrow"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
subprojects {
apply(plugin = "java")
apply(plugin = "io.freefair.lombok")
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/org.jetbrains/annotations
implementation("org.jetbrains:annotations:26.0.2-1")
// https://projectreactor.io/docs/core/release/reference/gettingStarted.html
implementation(platform("io.projectreactor:reactor-bom:2025.0.3"))
implementation("io.projectreactor:reactor-core")
// https://mvnrepository.com/artifact/com.google.guava/guava
implementation("com.google.guava:guava:33.5.0-jre")
// https://www.mongodb.com/docs/languages/java/reactive-streams-driver/current/get-started/download-and-install/
implementation(platform("org.mongodb:mongodb-driver-bom:5.6.1"))
implementation("org.mongodb:mongodb-driver-reactivestreams")
}
}