Skip to content

Instantly share code, notes, and snippets.

@aya-eiya
Created May 12, 2014 09:40
Show Gist options
  • Save aya-eiya/d5558735b188f9336676 to your computer and use it in GitHub Desktop.
Save aya-eiya/d5558735b188f9336676 to your computer and use it in GitHub Desktop.
Gradle + Coberturaでsrc/test/resources以下のファイルがリソースとして読み込まれない ref: http://qiita.com/aya_eiya/items/3f48b1cc75d832d1bfae
def instDir = "$buildDir/instrumented_classes"
task setInstResources(){
dependsOn 'testClasses'
}
setInstResources << {
copy{
from sourceSets.test.output.resourcesDir
into instDir
}
}
test {
dependsOn 'setInstResources'
useJUnit()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment