Index: DependencyVerifier.java =================================================================== RCS file: /home/cvs/maven/src/java/org/apache/maven/verifier/DependencyVerifier.java,v retrieving revision 1.34.4.9 diff -u -r1.34.4.9 DependencyVerifier.java --- DependencyVerifier.java 6 Jul 2004 12:45:48 -0000 1.34.4.9 +++ DependencyVerifier.java 16 Jul 2004 16:57:57 -0000 @@ -263,9 +263,8 @@ if (artifact.exists()) { // The snapshot jar locally exists and not in remote repository - // FIXME: localize this message - log.info("Artifact " + artifact.getUrlPath() - + " doesn't exists in remote repository, but it exists locally"); + String message = getMessage( "not.existing.artifact.in.repo", artifact.getUrlPath() ); + log.info( message ); i.remove(); } else Index: src/messages/messages_en.properties =================================================================== RCS file: /home/cvs/maven/src/messages/messages_en.properties,v retrieving revision 1.3.10.1 diff -u -r1.3.10.1 messages_en.properties --- src/messages/messages_en.properties 4 Mar 2004 17:47:31 -0000 1.3.10.1 +++ src/messages/messages_en.properties 16 Jul 2004 16:49:48 -0000 @@ -31,3 +31,4 @@ plugin.loading.error=The plugin ${1} could not be loaded. empty.descriptor.error=The ${1} file you specified has zero length. checksum.verification.error=The follow artifact is corrupt: ${1}. +not.existing.artifact.in.repo=Artifact ${1} doesn't exist in remote repository, but it exists locally. Index: src/messages/messages_es.properties =================================================================== RCS file: /home/cvs/maven/src/messages/messages_es.properties,v retrieving revision 1.4.10.2 diff -u -r1.4.10.2 messages_es.properties --- src/messages/messages_es.properties 9 Jul 2004 10:12:44 -0000 1.4.10.2 +++ src/messages/messages_es.properties 16 Jul 2004 16:49:48 -0000 @@ -31,3 +31,4 @@ plugin.loading.error=\u00a1No se ha podido cargar el plugin ${1}! empty.descriptor.error=El fichero especificado, ${1} , tiene longitud cero. checksum.verification.error=El siguiente artefacto est\u00e1 corrupto: ${1}. +not.existing.artifact.in.repo=El artefacto ${1} no existe en el repositorio remoto, pero existe en el local.