A Maven dependency defines groupId, artifactId, version and "classifier".
The first three map top Ivy's organization, name and revision. What name does
Ivy use for the "classifier"?
Specifically, I have
<dependency org="commons-lang" name="commons-lang" rev="2.0"/>
which is downloading both the jar (which I want) and sources (which I don't
need). How do I exclude the sources?
