apply plugin: 'java' archivesBaseName = "$rootProject.archivesBaseName-$project.archivesBaseName" configurations.compile.transitive = true configurations.testCompile.transitive = true // no need to use the resource dir sourceSets.main.resources.srcDirs 'src/main/java' sourceSets.test.resources.srcDirs 'src/test/java' dependencies { compile('org.testng:testng:5.10:jdk15') { 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 } } test { useTestNG() systemProperties['es.test.log.conf'] = 'log4j-gradle.properties' }