Remove redundancy from the report.

This commit is contained in:
Manuele Simi 2020-03-11 15:06:47 -04:00
parent 1daf774303
commit 5b3bbd7dcc
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -116,12 +116,12 @@ def printReport(report) {
artifacts.each { name, data ->
text += "${indent}|--Module: ${name}\n"
text += "${indent*2}|--Dependency Level: ${deep}\n"
text += "${indent*2}|--Downstream Modules for ${name}\n"
text += "${indent*2}|--Downstream Modules\n"
data['dependencies'].each {d ->
text += "${indent*3}|--${d}"
text += "\n"
}
text += "${indent*2}|--Downstream Projects for ${name}\n"
text += "${indent*2}|--Downstream Projects for\n"
data['projects'].each { p ->
text += "${indent*3}|--${p}"
text += "\n"