PR: MRM-12

Added "final" in the list of possible version contents

git-svn-id: https://svn.apache.org/repos/asf/maven/repository-manager/trunk@411984 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Edwin L. Punzalan 2006-06-06 03:46:40 +00:00
parent c4364eebea
commit cb6190c5ad
2 changed files with 13 additions and 1 deletions

View File

@ -323,7 +323,7 @@ public class ArtifactUtils
"([Tt][Ee][Ss][Tt][_.0-9]*)|" + "([Dd][Ee][Bb][Uu][Gg][_.0-9]*)|" +
"([Uu][Nn][Oo][Ff][Ff][Ii][Cc][Ii][Aa][Ll][_.0-9]*)|" + "([Cc][Uu][Rr][Rr][Ee][Nn][Tt])|" +
"([Ll][Aa][Tt][Ee][Ss][Tt])|" + "([Ff][Cc][Ss])|" + "([Rr][Ee][Ll][Ee][Aa][Ss][Ee][_.0-9]*)|" +
"([Nn][Ii][Gg][Hh][Tt][Ll][Yy])|" + "([AaBb][_.0-9]*)";
"([Nn][Ii][Gg][Hh][Tt][Ll][Yy])|" + "[Ff][Ii][Nn][Aa][Ll]|" + "([AaBb][_.0-9]*)";
StringBuffer classifierBuffer = new StringBuffer();
StringBuffer versionBuffer = new StringBuffer();

View File

@ -76,6 +76,18 @@ public class ArtifactUtilsLegacyTest
assertEquals( createArtifact( "org.apache.maven.test", "maven-model", "1.0-SNAPSHOT" ), artifact );
}
public void testFinal()
throws ComponentLookupException
{
String testPath = "org.apache.maven.test/jars/maven-model-1.0-final-20060606.jar";
Artifact artifact = getArtifactFromPath( testPath );
assertNotNull( "Artifact path with invalid snapshot error", artifact );
assertEquals( createArtifact( "org.apache.maven.test", "maven-model", "1.0-final-20060606" ), artifact );
}
public void testNormal()
throws ComponentLookupException
{