mirror of https://github.com/apache/maven.git
[MNG-6967] Improve the command line output from maven-artifact.
- Clearly separate version from tokens in command line output.
This commit is contained in:
parent
b7510d627f
commit
9166805a06
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue