We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f2ab16 commit 96adddcCopy full SHA for 96adddc
1 file changed
build.gradle
@@ -21,6 +21,7 @@ publishing {
21
22
ext {
23
junitVersion = '4.12'
24
+ slf4jVersion = '1.7.25'
25
}
26
27
apply plugin: 'java'
@@ -55,6 +56,8 @@ task myJavadocs(type: Javadoc) {
55
56
57
58
dependencies {
59
+ compile 'org.slf4j:slf4j-api:' + slf4jVersion
60
+ testCompile 'org.slf4j:slf4j-simple:' + slf4jVersion
61
testCompile "junit:junit:$junitVersion"
62
testCompile 'org.awaitility:awaitility:2.0.0'
63
0 commit comments