Skip to content

Commit aa8aa0d

Browse files
authored
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 1d840f9 commit aa8aa0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

distribution/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Collection distributions = project('archives').subprojects + project('packages')
3434
task generateDependenciesReport(type: ConcatFilesTask) {
3535
files = fileTree(dir: project.rootDir, include: '**/dependencies.csv' )
3636
headerLine = "name,version,url,license"
37-
target = new File(System.getProperty('csv')?: "${project.buildDir}/dependencies/es-dependencies.csv")
37+
target = new File(System.getProperty('csv')?: "${project.buildDir}/reports/dependencies/es-dependencies.csv")
3838
}
3939

4040
/*****************************************************************************

0 commit comments

Comments
 (0)