- 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>
14 lines
376 B
Plaintext
14 lines
376 B
Plaintext
plugins {
|
|
alias(libs.plugins.kotlinJvm)
|
|
}
|
|
|
|
dependencies {
|
|
implementation(platform(projects.platform.platformBom))
|
|
implementation(projects.core.coreUtils)
|
|
implementation(projects.core.coreDomain)
|
|
implementation(projects.core.znsParser)
|
|
implementation(projects.backend.services.masterdata.masterdataDomain)
|
|
|
|
testImplementation(projects.platform.platformTesting)
|
|
}
|