Using Gradle version 2.13
I just used gradle init
to generate a gradle build from a maven build and there were a couple of issues
-
provided
dependencies were mapped to thecompile
configuration. Now that we have thecompileOnly
configuration I feel that this is a better match (note my project is ajava
project and not awar
project) -
Dependencies were added using the
group:'foo', name:'bar', version:'1.0'
notation. I’d prefer'foo:bar:1.0
. This is more of a personal preference I guess.