34 lines
1.2 KiB
Kotlin
34 lines
1.2 KiB
Kotlin
plugins {
|
|
// kotlin("jvm")
|
|
// kotlin("plugin.spring")
|
|
|
|
alias(libs.plugins.kotlin.jvm)
|
|
alias(libs.plugins.kotlin.spring)
|
|
|
|
// KORREKTUR: Dieses Plugin ist entscheidend. Es schaltet den `springBoot`-Block
|
|
// und alle Spring-Boot-spezifischen Gradle-Tasks frei.
|
|
alias(libs.plugins.spring.boot)
|
|
|
|
// Dependency Management für konsistente Spring-Versionen
|
|
alias(libs.plugins.spring.dependencyManagement)
|
|
}
|
|
|
|
dependencies {
|
|
// Apply platform BOM for version management
|
|
implementation(platform(projects.platform.platformBom))
|
|
|
|
implementation(projects.infrastructure.eventStore.eventStoreApi)
|
|
implementation(projects.core.coreDomain)
|
|
implementation(projects.core.coreUtils)
|
|
|
|
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")
|
|
implementation("javax.annotation:javax.annotation-api:1.3.2")
|
|
|
|
testImplementation(projects.platform.platformTesting)
|
|
testImplementation("org.testcontainers:testcontainers")
|
|
testImplementation("org.testcontainers:junit-jupiter")
|
|
}
|