9ea2b74a81
* MP-19 Refactoring: Einführung der "Registry" & "Masterdata" Trennung … * MP-19 Refactoring: Frontend Tabula Rasa * MP-19 Refactoring: Frontend Tabula Rasa * refactoring: * MP-20 fix(docker/clients): include `:domains` module in web/desktop b… * MP-20 fix(web-app build): resolve JS compile error and add dev/prod b… * MP-20 fix(web-app): remove vendor.js reference and harden JS bootstra… * MP-20 fixing: clients * MP-20 fixing: clients
31 lines
1.1 KiB
Kotlin
31 lines
1.1 KiB
Kotlin
plugins {
|
|
// KORREKTUR: Alle Plugins werden jetzt konsistent über den Version Catalog geladen.
|
|
alias(libs.plugins.kotlin.jvm)
|
|
alias(libs.plugins.kotlin.spring)
|
|
// Das JPA-Plugin wird jetzt ebenfalls zentral verwaltet.
|
|
alias(libs.plugins.kotlin.jpa)
|
|
}
|
|
|
|
dependencies {
|
|
// Interne Module
|
|
implementation(projects.platform.platformDependencies)
|
|
implementation(projects.horses.horsesDomain)
|
|
implementation(projects.horses.horsesApplication)
|
|
implementation(projects.core.coreDomain)
|
|
implementation(projects.core.coreUtils)
|
|
implementation(projects.infrastructure.cache.cacheApi)
|
|
implementation(projects.infrastructure.eventStore.eventStoreApi)
|
|
implementation(projects.infrastructure.messaging.messagingClient)
|
|
|
|
// KORREKTUR: Alle externen Abhängigkeiten werden jetzt über den Version Catalog bezogen.
|
|
|
|
// Spring Data JPA
|
|
implementation(libs.spring.boot.starter.data.jpa)
|
|
|
|
// Datenbank-Treiber
|
|
runtimeOnly(libs.postgresql.driver)
|
|
|
|
// Testing
|
|
testImplementation(projects.platform.platformTesting)
|
|
}
|