mirror of https://github.com/apache/maven.git
Fixed ordering of g🅰️t:v in 'Unable to download artifact' message
and similar messages (was g🅰️v:t, and the rest of m2 uses g🅰️t:v). git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@329256 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
20ac7dcefc
commit
61d5fc6cf4
|
@ -154,7 +154,7 @@ public class AbstractArtifactResolutionException
|
||||||
|
|
||||||
sb.append( message );
|
sb.append( message );
|
||||||
sb.append( LS );
|
sb.append( LS );
|
||||||
sb.append( " " + groupId + ":" + artifactId + ":" + version + ":" + type );
|
sb.append( " " + groupId + ":" + artifactId + ":" + type + ":" + version );
|
||||||
sb.append( LS );
|
sb.append( LS );
|
||||||
if ( remoteRepositories != null && !remoteRepositories.isEmpty() )
|
if ( remoteRepositories != null && !remoteRepositories.isEmpty() )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue