Created
May 12, 2014 09:40
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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