progress dev

This commit is contained in:
2024-02-21 21:31:16 +01:00
parent 895ee63587
commit 02cefc7e08
2 changed files with 30 additions and 0 deletions

View File

@ -29,6 +29,11 @@ dependencies {
testImplementation("org.testcontainers:postgresql")
}
tasks.register("run") {
dependsOn(tasks.bootRun)
}
tasks.withType<Test> {
useJUnitPlatform()
}