Files
hlaeja-test/build.gradle.kts
Swordsteel 6aad7e3d63 update postgres test container
- update README.md
- update PostgresContainer
  - add TestExecutionListeners
  - remove ExtendWith
- update PostgresInitializer
  - cleanup
  - use properties for script and container
  - add afterTestClass
  - add beforeTestClass
  - extend TestExecutionListener
- remove PostgresExtension
- add debug logging to PostgresExecutor
- add ContainerUtils
- add dependencies
- extract function from PostgresExtension to PostgresExecutor
2025-03-10 19:48:44 +01:00

21 lines
636 B
Kotlin

plugins {
alias(hlaeja.plugins.kotlin.jvm)
alias(hlaeja.plugins.kotlin.spring)
alias(hlaeja.plugins.ltd.hlaeja.plugin.library)
alias(hlaeja.plugins.spring.dependency.management)
alias(hlaeja.plugins.springframework.boot)
}
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.postgresql)
testRuntimeOnly(hlaeja.junit.platform.launcher)
}
group = "ltd.hlaeja.library"