ceb1ccdab8
- Deleted outdated integration test classes (`HorseServiceIntegrationTest`, `TransactionalContextTest`, and others) and test resources (`logback-test.xml`). - Removed obsolete Gradle dependencies related to these tests and revised project module references. - Simplified `DomPferd` domain model with minor refactorings for serialization and validation. Signed-off-by: Stefan Mogeritsch <stefan.mo.co@gmail.com>
11 lines
273 B
Kotlin
11 lines
273 B
Kotlin
plugins {
|
|
alias(libs.plugins.kotlinJvm)
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.backend.services.horses.horsesDomain)
|
|
implementation(projects.core.coreDomain)
|
|
implementation(projects.core.coreUtils)
|
|
testImplementation(projects.platform.platformTesting)
|
|
}
|