in src/main/java/org/apache/maven/shared/verifier/Verifier.java [1001:1009]
private void verifyArtifactPresence( boolean wanted, String groupId, String artifactId, String version, String ext )
throws VerificationException
{
List<String> files = getArtifactFileNameList( groupId, artifactId, version, ext );
for ( String fileName : files )
{
verifyFilePresence( fileName, wanted );
}
}