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.
This commit is contained in:
parent
1d840f9348
commit
aa8aa0d9e0
|
@ -34,7 +34,7 @@ Collection distributions = project('archives').subprojects + project('packages')
|
||||||
task generateDependenciesReport(type: ConcatFilesTask) {
|
task generateDependenciesReport(type: ConcatFilesTask) {
|
||||||
files = fileTree(dir: project.rootDir, include: '**/dependencies.csv' )
|
files = fileTree(dir: project.rootDir, include: '**/dependencies.csv' )
|
||||||
headerLine = "name,version,url,license"
|
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")
|
||||||
}
|
}
|
||||||
|
|
||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
|
|
Loading…
Reference in New Issue