[MNG-6967] Improve the command line output from maven-artifact.

- Clearly separate version from tokens in command line output.
This commit is contained in:
Dennis Lundberg 2021-01-11 15:23:24 +01:00
parent b7510d627f
commit 9166805a06
1 changed files with 1 additions and 1 deletions

View File

@ -822,7 +822,7 @@ public class ComparableVersion
+ ( ( compare == 0 ) ? "==" : ( ( compare < 0 ) ? "<" : ">" ) ) + ' ' + version );
}
System.out.println( ( i++ ) + ". " + version + " -> " + c.getCanonical() + " " + c.items.toListString() );
System.out.println( ( i++ ) + ". " + version + " -> " + c.getCanonical() + "; tokens: " + c.items.toListString() );
prev = c;
}