PR: MNG-1372

Submitted by: Allan Ramirez
update command to mvn

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@330200 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-11-02 06:49:09 +00:00
parent 77a0c2d3b7
commit cbc583333c
1 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ public class ArtifactNotFoundException
sb.append( LS );
sb.append( "and install it using the command: " );
sb.append( LS );
sb.append( " m2 install:install-file -DgroupId=" );
sb.append( " mvn install:install-file -DgroupId=" );
sb.append( groupId );
sb.append( " -DartifactId=" );
sb.append( artifactId );
@ -85,7 +85,7 @@ public class ArtifactNotFoundException
sb.append( type );
sb.append( " -Dfile=/path/to/file" );
}
sb.append( constructArtifactPath( path ) );
sb.append( LS );
return sb.toString();