a4c7d53aa3
### **Service-Implementation** - [ ] **Tag 1**: Members-Service REST-API implementieren - [ ] **Tag 2**: Database-Migrations und Repository-Layer - [ ] **Tag 3**: Event-Publishing nach Kafka aktivieren - [ ] **Tag 4**: Horses-Service analog implementieren - [ ] **Tag 5**: Integration-Tests für beide Services - [ ] **Tag 6-7**: Events-Service und Masterdata-Service
19 lines
514 B
Kotlin
19 lines
514 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
kotlin("plugin.spring")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.platform.platformDependencies)
|
|
|
|
implementation(projects.members.membersDomain)
|
|
implementation(projects.members.membersApplication)
|
|
implementation(projects.core.coreDomain)
|
|
implementation(projects.core.coreUtils)
|
|
|
|
implementation("org.springframework:spring-web")
|
|
implementation("org.springdoc:springdoc-openapi-starter-common")
|
|
|
|
testImplementation(projects.platform.platformTesting)
|
|
}
|