refactor(build, dependencies): introduce SQLDelight WebWorker setup, update Spring Boot dependencies, and align versions

Configured `sqlite.worker.js` for OPFS-backed SQLite WASM operations in the frontend build pipeline. Added new Spring Boot dependency bundles including secure service configurations. Integrated updated database utilities with enhanced error handling. Removed outdated circuit breaker tests and replaced them with modern unit and integration test setups.
This commit is contained in:
2026-01-12 17:05:44 +01:00
parent 2f8529156a
commit 32e43b8fb0
23 changed files with 402 additions and 526 deletions
@@ -1,6 +1,18 @@
plugins {
alias(libs.plugins.kotlinJvm)
alias(libs.plugins.kotlinJpa)
alias(libs.plugins.spring.boot) // Spring Boot Plugin hinzufügen
alias(libs.plugins.spring.dependencyManagement) // Dependency Management für Spring
}
// Library module: do not create an executable Spring Boot jar here.
tasks.bootJar {
enabled = false
}
// Ensure a regular jar is produced instead.
tasks.jar {
enabled = true
}
dependencies {
@@ -8,6 +20,9 @@ dependencies {
implementation(projects.core.coreDomain)
implementation(projects.platform.platformDependencies)
// Spring Boot Database dependencies
implementation(libs.bundles.database.complete)
// Exposed
implementation(libs.exposed.core)
implementation(libs.exposed.jdbc)