From 3cb5a94c6ca4f101999a46bc86f73df870f6baf2 Mon Sep 17 00:00:00 2001 From: Jason Tedor Date: Sat, 9 Jun 2018 08:46:50 -0400 Subject: [PATCH] Move default location of dependencies report This commit moves the default location of the full dependencies report to be under the reports directory to align it with the location for the dependenciesInfo task output. --- distribution/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distribution/build.gradle b/distribution/build.gradle index 7f08c244f456d..a8fa64de16f7d 100644 --- a/distribution/build.gradle +++ b/distribution/build.gradle @@ -39,7 +39,7 @@ task generateDependenciesReport(type: ConcatFilesTask) { } files = fileTree(dir: project.rootDir, include: '**/dependencies.csv' ) headerLine = "name,version,url,license" - target = new File(System.getProperty('csv')?: "${project.buildDir}/dependencies/es-dependencies.csv") + target = new File(System.getProperty('csv')?: "${project.buildDir}/reports/dependencies/es-dependencies.csv") } /*****************************************************************************