Closed ph4r05 closed 6 years ago
Thanks a lot for this, I've added ability to extract test configuration like this :
test {
dependencies {
compile 'junit:junit:4.12'
compile 'com.licel:jcardsim:3.0.4'
}
}
So you can manage your own dependencies without relying on the plugin to do that. When at least one dependencies is specified, jcardsim repo is not included & jcardsim/junit are not default included in the plugin. I think this way it makes it more clear what is used in your project.
What do you think about this ? Does it cover your initial needs ?
Hi! Perfect, this will do it as well.
Hi! Thanks for this awesome gradle plugin!
I've been working with it for a while and I find useful to be able to change the JcardSim dependency included in the tests.
This PR adds few options to the
extension.configuration
Namely:
With this I can disable the repo being added or include different version of the JCardSim.
Please take a look and let me know if this is OK for you. Thanks!