We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a4160e commit 07bf874Copy full SHA for 07bf874
modules/mailhog/build.gradle
@@ -1,11 +1,11 @@
1
description = "Testcontainers :: MailHog"
2
3
dependencies {
4
- compile project(':testcontainers')
5
- compile 'org.apache.httpcomponents:httpclient:4.5.8'
6
- 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'
7
8
- testCompile 'com.sun.mail:javax.mail:1.6.0'
9
- testCompile 'org.apache.httpcomponents:httpcore:4.4.11'
10
- 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'
11
}
0 commit comments