1
0
mirror of synced 2026-05-22 21:33:16 +00:00

SEC-1906: Fix EmmaPlugin for Gradle 1.0

This commit is contained in:
Rob Winch
2012-07-05 22:57:16 -05:00
parent a6bded86c2
commit d14150c2e1
3 changed files with 3 additions and 3 deletions
@@ -32,7 +32,7 @@ class EmmaPlugin implements Plugin<Project> {
doFirst {
InstrProcessor processor = InstrProcessor.create ();
String[] classesDirPath = [project.sourceSets.main.classesDir.absolutePath]
String[] classesDirPath = [project.sourceSets.main.output.classesDir.absolutePath]
processor.setInstrPath(classesDirPath, false);
processor.setOutMode(InstrProcessor.OutMode.OUT_MODE_COPY);