I need to resolve maven test-jar dependencies from ivy project. Retrieving the jars is no problem, but the test-jars are not resolved for some reason...
Here is my resolver
<ibiblio name="nexus" root="${nexus-maven2-root}" pattern="${nexus-maven2-pattern}" m2compatible="true"/>
<property name="nexus-maven2-pattern"
value="[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]"
override="false" />
In nexus, this artifact is resolved (IBSCore-2.21-20160825.121144-2.jar) but this one not (IBSCore-2.21-20160825.121144-2-tests.jar).
Thanks a lot for your help already!