gradle sucks etc

This commit is contained in:
kento2 2026-06-27 16:46:30 +02:00
parent 72b4edf48b
commit b0d4a7d061
25 changed files with 463 additions and 123 deletions

View file

@ -7,7 +7,7 @@ plugins {
}
group = "de.kentoj.scrow"
version = "1.0-SNAPSHOT"
version = "1.0.0"
repositories {
mavenCentral()
@ -18,6 +18,8 @@ subprojects {
apply(plugin = "java")
apply(plugin = "io.freefair.lombok")
version = rootProject.version
java {
withSourcesJar()
withJavadocJar()
@ -49,6 +51,14 @@ subprojects {
// 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")
// https://mvnrepository.com/artifact/org.postgresql/r2dbc-postgresql
// TODO remove or fully switch to postgres
implementation("org.postgresql:r2dbc-postgresql:1.1.1.RELEASE")
// https://mvnrepository.com/artifact/org.springframework.data/spring-data-r2dbc
implementation("org.springframework.data:spring-data-r2dbc:4.1.0-RC1")
// https://mvnrepository.com/artifact/io.r2dbc/r2dbc-pool
implementation("io.r2dbc:r2dbc-pool:1.0.2.RELEASE")
}
}