e7b18da45d
1. **Docker-Compose für Entwicklung optimieren** 2. **Umgebungsvariablen für lokale Entwicklung** 3. **Service-Abhängigkeiten** 4. **Docker-Compose für Produktion** 5. **Dokumentation**
21 lines
657 B
Kotlin
21 lines
657 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
kotlin("plugin.spring")
|
|
kotlin("plugin.jpa") version "2.1.21"
|
|
}
|
|
|
|
dependencies {
|
|
api(platform(projects.platform.platformBom))
|
|
|
|
implementation(projects.members.membersDomain)
|
|
implementation(projects.members.membersApplication)
|
|
implementation(projects.infrastructure.cache.cacheApi)
|
|
implementation(projects.infrastructure.eventStore.eventStoreApi)
|
|
implementation(projects.infrastructure.messaging.messagingClient)
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
|
|
implementation("org.postgresql:postgresql")
|
|
|
|
testImplementation(projects.platform.platformTesting)
|
|
}
|