In maven I can specify a \"type\" for dependency resolution. I am trying to pull down a tests.jar. How can I do this using Gradle?
tests.jar
I have tried using t
Gradle doesn't have a direct equivalent of Maven's <type>, but classifier: 'tests' should work here (instead of type: ...).
<type>
classifier: 'tests'
type: ...