fix dependency in build on proper slf4j version

This commit is contained in:
kimchy 2010-04-21 00:57:11 +03:00
parent 30ae2bb87d
commit 52a4a41088
2 changed files with 3 additions and 3 deletions

View File

@ -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 {

View File

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