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' }