blob: a055da4a547b1ec66e585e777cf580cc4f365f2b [file] [log] [blame]
// applier 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