2010-04-02 08:47:27 -04:00
|
|
|
apply plugin: 'java'
|
2011-05-23 10:14:22 -04:00
|
|
|
apply plugin: 'eclipse'
|
2010-02-08 08:30:06 -05:00
|
|
|
|
|
|
|
archivesBaseName = "$rootProject.archivesBaseName-$project.archivesBaseName"
|
|
|
|
|
|
|
|
configurations.compile.transitive = true
|
|
|
|
configurations.testCompile.transitive = true
|
|
|
|
|
|
|
|
// no need to use the resource dir
|
2010-04-20 18:17:19 -04:00
|
|
|
sourceSets.main.resources.srcDirs 'src/main/java'
|
|
|
|
sourceSets.test.resources.srcDirs 'src/test/java'
|
2010-02-08 08:30:06 -05:00
|
|
|
|
|
|
|
dependencies {
|
2011-07-06 16:15:03 -04:00
|
|
|
compile('org.testng:testng:6.1.1') { transitive = false }
|
2011-07-06 22:36:53 -04:00
|
|
|
compile('log4j:log4j:1.2.16') { transitive = false }
|
2010-02-08 08:30:06 -05:00
|
|
|
}
|
2011-05-23 10:14:22 -04:00
|
|
|
|
|
|
|
eclipseClasspath {
|
|
|
|
defaultOutputDir = file('build/eclipse-build')
|
|
|
|
}
|