build: add H2 database dependency for testing
Some checks failed
Quality Check / Gradle Check (pull_request) Failing after 1m3s

This commit is contained in:
Jan Gleytenhoover 2024-09-25 09:44:46 +02:00
parent bfdb1585ec
commit 41d5f5c9b8
Signed by: jank
GPG Key ID: B267751B8AE29EFE

@ -35,6 +35,7 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-oauth2-client:3.3.4") implementation("org.springframework.boot:spring-boot-starter-oauth2-client:3.3.4")
runtimeOnly("org.postgresql:postgresql") runtimeOnly("org.postgresql:postgresql")
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0") implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0")
testImplementation("com.h2database:h2")
} }
tasks.withType<Test> { tasks.withType<Test> {