From 498835015ae5860c21789da169a8dbbf54a38fe7 Mon Sep 17 00:00:00 2001 From: Sion Williams Date: Mon, 27 Jul 2015 22:33:39 +0100 Subject: [PATCH] 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. --- .../groovy/com/tools/security/tasks/DependencyCheckTask.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dependency-check-gradle/src/main/groovy/com/tools/security/tasks/DependencyCheckTask.groovy b/dependency-check-gradle/src/main/groovy/com/tools/security/tasks/DependencyCheckTask.groovy index c18cf8c7e..9eb32791a 100644 --- a/dependency-check-gradle/src/main/groovy/com/tools/security/tasks/DependencyCheckTask.groovy +++ b/dependency-check-gradle/src/main/groovy/com/tools/security/tasks/DependencyCheckTask.groovy @@ -100,7 +100,7 @@ class DependencyCheckTask extends DefaultTask { } def generateReportDirectory(String currentProjectName) { - "${outputDirectory}/${currentProjectName}" + "${getOutputDirectory()}/${currentProjectName}" } def overrideProxySetting() {