1. **Dokumentation der Architektur:**
- Vervollständigen Sie die C4-Diagramme im docs-Verzeichnis
- Dokumentieren Sie die wichtigsten Architekturentscheidungen in ADRs
2. **Redis-Integration finalisieren:**
- Implementieren Sie die verteilte Cache-Lösung für die Offline-Fähigkeit
- Nutzen Sie Redis Streams für das Event-Sourcing
18 lines
578 B
Plaintext
18 lines
578 B
Plaintext
plugins {
|
|
kotlin("jvm")
|
|
kotlin("plugin.spring")
|
|
}
|
|
|
|
dependencies {
|
|
api(platform(projects.platform.platformBom))
|
|
implementation(projects.infrastructure.cache.cacheApi)
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-data-redis")
|
|
implementation("io.lettuce:lettuce-core")
|
|
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
|
|
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310")
|
|
|
|
testImplementation(projects.platform.platformTesting)
|
|
testImplementation("org.testcontainers:testcontainers")
|
|
}
|