45fe774a45
1. Update MemberRepositoryImpl: replace DatabaseFactory.dbQuery calls with explicit Exposed transaction{} and remove the non-existent import; add necessary ExperimentalTime opt-ins and fix Clock usages.
2. Inspect members-infrastructure MemberTable.kt to add missing ExperimentalTime opt-ins and adjust types if needed.
3. Rebuild to surface any remaining Exposed API or import errors and fix them.
4. Verify members-api compiles and that endpoints remain intact; provide final summary.
32 lines
1.0 KiB
Kotlin
32 lines
1.0 KiB
Kotlin
plugins {
|
|
// kotlin("jvm")
|
|
// kotlin("plugin.spring")
|
|
// kotlin("plugin.jpa") version "2.1.21"
|
|
|
|
alias(libs.plugins.kotlinJvm)
|
|
alias(libs.plugins.kotlinSpring)
|
|
|
|
// KORREKTUR: Dieses Plugin ist entscheidend. Es schaltet den `springBoot`-Block
|
|
// und alle Spring-Boot-spezifischen Gradle-Tasks frei.
|
|
alias(libs.plugins.spring.boot)
|
|
|
|
// Dependency Management für konsistente Spring-Versionen
|
|
alias(libs.plugins.spring.dependencyManagement)
|
|
}
|
|
|
|
dependencies {
|
|
api(platform(projects.platform.platformBom))
|
|
|
|
implementation(projects.services.members.membersDomain)
|
|
implementation(projects.core.coreDomain)
|
|
implementation(projects.core.coreUtils)
|
|
implementation(projects.infrastructure.cache.cacheApi)
|
|
implementation(projects.infrastructure.eventStore.eventStoreApi)
|
|
implementation(projects.infrastructure.messaging.messagingClient)
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
|
|
implementation("org.postgresql:postgresql")
|
|
|
|
testImplementation(projects.platform.platformTesting)
|
|
}
|