fix dependency in build on proper slf4j version
This commit is contained in:
parent
30ae2bb87d
commit
52a4a41088
|
@ -57,7 +57,7 @@ dependencies {
|
|||
|
||||
testCompile project(':test-testng')
|
||||
testCompile('org.testng:testng:5.10:jdk15') { transitive = false }
|
||||
testCompile 'org.hamcrest:hamcrest-all:1.1'
|
||||
testCompile('org.hamcrest:hamcrest-all:1.1') { transitive = false }
|
||||
}
|
||||
|
||||
javadoc {
|
||||
|
|
|
@ -11,8 +11,8 @@ sourceSets.test.resources.srcDir 'src/test/java'
|
|||
|
||||
dependencies {
|
||||
compile('org.testng:testng:5.10:jdk15') { transitive = false }
|
||||
compile 'org.slf4j:slf4j-api:1.5.8'
|
||||
compile('org.slf4j:slf4j-log4j12:1.5.8') { transitive = false }
|
||||
compile('org.slf4j:slf4j-api:1.5.11') { transitive = false }
|
||||
compile('org.slf4j:slf4j-log4j12:1.5.11') { transitive = false }
|
||||
compile('log4j:log4j:1.2.15') { transitive = false }
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue