blob: 3f8c8af8aeac353132cbd7969481403b0d5ab8bd [file] [log] [blame]
// generator module
apply plugin: 'java'
dependencies {
compile project(':shared')
testCompile 'junit:junit:4.12'
testCompile project(':sharedtest')
}
task copyTestResources(type: Copy) {
// AS/IntelliJ workaround: https://code.google.com/p/android/issues/detail?id=64887#c26
if (System.properties['idea.platform.prefix'] != null) {
from sourceSets.test.resources
into sourceSets.test.output.classesDir
}
}
processTestResources.dependsOn copyTestResources
// EOF