Skip to content

Commit 942aa41

Browse files
committed
Move default location of dependencies report (#31228)
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.
1 parent f99f185 commit 942aa41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

distribution/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Collection distributions = project.subprojects.findAll {
5252
task generateDependenciesReport(type: ConcatFilesTask) {
5353
files = fileTree(dir: project.rootDir, include: '**/dependencies.csv' )
5454
headerLine = "name,version,url,license"
55-
target = new File(System.getProperty('csv')?: "${project.buildDir}/dependencies/es-dependencies.csv")
55+
target = new File(System.getProperty('csv')?: "${project.buildDir}/reports/dependencies/es-dependencies.csv")
5656
}
5757

5858
/*****************************************************************************

0 commit comments

Comments
 (0)