Files
hlaeja-test/build.gradle.kts
2025-08-18 12:41:26 +02:00

22 lines
657 B
Kotlin

plugins {
alias(hlaeja.plugins.kotlin.jvm)
alias(hlaeja.plugins.kotlin.spring)
alias(hlaeja.plugins.spring.boot)
alias(hlaeja.plugins.spring.dependency.management)
alias(hlaeja.plugins.library)
}
dependencies {
implementation(hlaeja.kotlin.logging)
implementation(hlaeja.kotlinx.coroutines)
implementation(hlaeja.springboot.starter.r2dbc)
implementation(hlaeja.springboot.starter.test)
implementation(hlaeja.testcontainers.junit)
implementation(hlaeja.testcontainers.kafka)
implementation(hlaeja.testcontainers.postgresql)
testRuntimeOnly(hlaeja.junit.platform.launcher)
}
group = "ltd.hlaeja.library"