Fix artifact's name.

This commit is contained in:
Manuele Simi 2020-03-12 11:27:45 -04:00
parent 4f2eac538c
commit 174d7a904a
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -53,7 +53,7 @@ pipeline {
report['downstream_projects'] = [] report['downstream_projects'] = []
report['downstream_modules']['L1'] = [:] report['downstream_modules']['L1'] = [:]
projects2artifacts[inputProject].each { a -> projects2artifacts[inputProject].each { a ->
if (a.name.split(':').length > 1) { //skip the parent (only groupId) if (a.split(':').length > 1) { //skip the parent (only groupId)
report = analyzeDependency(modules2deps, artifacts2projects, report, a, 1) } report = analyzeDependency(modules2deps, artifacts2projects, report, a, 1) }
} }
} }