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