Skip to content

Commit

Permalink
fixes #420,#419
Browse files Browse the repository at this point in the history
  • Loading branch information
John Rokicki committed Sep 8, 2020
1 parent 11b98f1 commit 1c7942d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Expand Up @@ -203,7 +203,7 @@ class HtmlReporter extends AbstractReporter {
if (getRevision().equalsIgnoreCase("milestone")) {
return item.getAvailable().getMilestone()
} else if (getRevision().equalsIgnoreCase("release")) {
return item.getVersion()
return item.getAvailable().getRelease()
} else if (getRevision().equalsIgnoreCase("integration")) {
return item.getAvailable().getIntegration()
}
Expand Down
Expand Up @@ -121,7 +121,8 @@ class DependencyUpdatesReporter {
project.logger.lifecycle '\nGenerated report file ' + filename
}

Reporter getOutputReporter(def formatter) {
Reporter getOutputReporter(String formatterOriginal) {
String formatter = formatterOriginal.replaceAll("\\s", "")
def reporter

switch (formatter) {
Expand Down

0 comments on commit 1c7942d

Please sign in to comment.