diff --git a/modules/elasticsearch/build.gradle b/modules/elasticsearch/build.gradle index a0a5ed3b4ab..92676f9f46e 100644 --- a/modules/elasticsearch/build.gradle +++ b/modules/elasticsearch/build.gradle @@ -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 { diff --git a/modules/test/testng/build.gradle b/modules/test/testng/build.gradle index c580ae529b3..fdc4d89aa15 100644 --- a/modules/test/testng/build.gradle +++ b/modules/test/testng/build.gradle @@ -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 } }