16 lines
464 B
Groovy
16 lines
464 B
Groovy
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('log4j:log4j:1.2.15') { transitive = false }
|
|
}
|