c806660685
- Deleted obsolete modules related to horses, clubs, officials, and persons services, including their configurations, build files, and database provisioning scripts. - Cleaned up associated references in the project structure (e.g., `settings.gradle.kts`). - Removed unused database tables and Spring beans related to these domains. Signed-off-by: Stefan Mogeritsch <stefan.mo.co@gmail.com>
28 lines
892 B
Kotlin
28 lines
892 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
alias(libs.plugins.spring.boot) apply false
|
|
alias(libs.plugins.spring.dependencyManagement)
|
|
alias(libs.plugins.kotlinSpring)
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.platform.platformDependencies)
|
|
|
|
implementation(projects.backend.services.masterdata.masterdataDomain)
|
|
implementation(projects.core.coreDomain)
|
|
implementation(projects.core.coreUtils)
|
|
implementation(projects.backend.infrastructure.cache.cacheApi)
|
|
implementation(projects.backend.infrastructure.eventStore.eventStoreApi)
|
|
implementation(projects.backend.infrastructure.messaging.messagingClient)
|
|
|
|
// Exposed
|
|
implementation(libs.exposed.core)
|
|
implementation(libs.exposed.dao)
|
|
implementation(libs.exposed.jdbc)
|
|
implementation(libs.exposed.kotlin.datetime)
|
|
|
|
implementation("org.postgresql:postgresql")
|
|
|
|
testImplementation(projects.platform.platformTesting)
|
|
}
|