Remove domain models and services related to Abteilung, AbteilungsRegelService, and Bewerb: cleanup unnecessary entities, validation logic, and tests across backend modules.

This commit is contained in:
2026-04-13 21:58:06 +02:00
parent 76d7019d30
commit fb1c1ee4ce
76 changed files with 1091 additions and 267 deletions
@@ -27,8 +27,10 @@ dependencies {
implementation(libs.bundles.spring.boot.secure.service)
// Common service extras
implementation(libs.spring.boot.starter.validation)
implementation(libs.spring.boot.starter.mail)
// JSON + Web: ensure Spring Web (incl. HttpMessageConverters) is on the classpath
implementation("org.springframework.boot:spring-boot-starter-web")
//implementation("org.springframework.boot:spring-boot-starter-web")
implementation(libs.spring.boot.starter.web)
implementation(libs.spring.boot.starter.json)
implementation(libs.postgresql.driver)
@@ -40,7 +42,8 @@ dependencies {
implementation(libs.caffeine)
// spring-web is included via spring-boot-starter-web above; keep explicit add if alias resolves elsewhere
// JDBC for JdbcTemplate-based TenantRegistry
implementation("org.springframework.boot:spring-boot-starter-jdbc")
//implementation("org.springframework.boot:spring-boot-starter-jdbc")
implementation(libs.spring.boot.starter.jdbc)
// Resilience Dependencies (manuell aufgelöst)
implementation(libs.resilience4j.spring.boot3)
@@ -55,10 +58,15 @@ dependencies {
// Flyway runtime (provided by BOM, ensure availability in this module)
implementation(libs.flyway.core)
implementation(libs.flyway.postgresql)
implementation(project(":core:zns-parser"))
//implementation(project(":core:zns-parser"))
implementation(projects.core.znsParser)
testImplementation(projects.platform.platformTesting)
testImplementation(libs.bundles.testing.jvm)
testImplementation(libs.spring.boot.starter.test)
testImplementation("com.h2database:h2")
//testImplementation("com.h2database:h2")
testImplementation(libs.h2.driver)
// testImplementation(libs.junit.jupiter.api)
// testImplementation(libs.junit.jupiter.engine)
}