Merge branch '1.1.x'

This commit is contained in:
Andy Wilkinson
2014-08-21 16:26:52 +01:00
7 changed files with 161 additions and 4 deletions

View File

@@ -108,6 +108,11 @@ public class AgentTasksEnhancer implements Action<Project> {
if (this.noverify != null && this.noverify) {
exec.jvmArgs("-noverify");
}
Iterable<?> defaultJvmArgs = exec.getConventionMapping().getConventionValue(
null, "jvmArgs", false);
if (defaultJvmArgs != null) {
exec.jvmArgs(defaultJvmArgs);
}
}
}