From 07bf874881dd14bb41b4b91eb3cf36446bd38c6a Mon Sep 17 00:00:00 2001 From: Jan Raap Date: Mon, 26 Jul 2021 15:53:23 +0200 Subject: [PATCH] Fixed mailhog build.gradle ...hopefully ;P --- modules/mailhog/build.gradle | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/modules/mailhog/build.gradle b/modules/mailhog/build.gradle index f372f98a4e3..d4625147263 100644 --- a/modules/mailhog/build.gradle +++ b/modules/mailhog/build.gradle @@ -1,11 +1,11 @@ description = "Testcontainers :: MailHog" dependencies { - compile project(':testcontainers') - compile 'org.apache.httpcomponents:httpclient:4.5.8' - compile 'org.apache.commons:commons-collections4:4.3' + api project(':testcontainers') + implementation 'org.apache.httpcomponents:httpclient:4.5.8' + implementation 'org.apache.commons:commons-collections4:4.3' - testCompile 'com.sun.mail:javax.mail:1.6.0' - testCompile 'org.apache.httpcomponents:httpcore:4.4.11' - testCompile 'org.hamcrest:hamcrest-library:1.3' + testImplementation 'com.sun.mail:javax.mail:1.6.0' + testImplementation 'org.apache.httpcomponents:httpcore:4.4.11' + testImplementation 'org.hamcrest:hamcrest-library:1.3' }