mirror of https://github.com/apache/archiva.git
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:
parent
c4364eebea
commit
cb6190c5ad
|
@ -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();
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue