scrow-monorepo/build.gradle.kts
2026-02-16 09:47:03 +01:00

42 lines
No EOL
1.3 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()
maven("https://hub.spigotmc.org/nexus/content/repositories/snapshots/") {
name = "spigotmc-repo"
}
maven("https://libraries.minecraft.net") {
name = "Minecraft Libraries"
}
}
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")
}
}