From f85ad88f333e00cb1020226d4a0308f172ccbd04 Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Thu, 6 Jul 2023 06:44:53 +0100 Subject: [PATCH] Add test dependencies to match Maven configuration --- build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.gradle b/build.gradle index 51e8fbf..bb01b85 100644 --- a/build.gradle +++ b/build.gradle @@ -35,6 +35,10 @@ dependencies { runtimeOnly 'org.postgresql:postgresql' developmentOnly 'org.springframework.boot:spring-boot-devtools' testImplementation 'org.springframework.boot:spring-boot-starter-test' + testImplementation 'org.springframework.boot:spring-boot-testcontainers' + testImplementation 'org.springframework.boot:spring-boot-docker-compose' + testImplementation 'org.testcontainers:junit-jupiter' + testImplementation 'org.testcontainers:mysql' } tasks.named('test') {