Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
Maven2 allows to define a classifier when declaring a dependency. For instance:
<dependency> <groupId>org.safehaus.jug</groupId> <artifactId>jug</artifactId> <version>2.0.0</version> <classifier>asl</classifier> </dependency>
In this case the artifact which should be downloaded is:
http://repo1.maven.org/maven2/org/safehaus/jug/jug/2.0.0/jug-2.0.0-asl.jar
As one can see, the classifier is appended after the revision. For the moment doesn't support this notion and fails, trying to download http://repo1.maven.org/maven2/org/safehaus/jug/jug/2.0.0/jug-2.0.0.jar