outputDirectory should have been called using the method rather than directly calling the property. This now fixes the failing integration test in the last commit.

This commit is contained in:
Sion Williams
2015-07-27 22:33:39 +01:00
parent cafa0d6578
commit 498835015a

View File

@@ -100,7 +100,7 @@ class DependencyCheckTask extends DefaultTask {
}
def generateReportDirectory(String currentProjectName) {
"${outputDirectory}/${currentProjectName}"
"${getOutputDirectory()}/${currentProjectName}"
}
def overrideProxySetting() {