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
-
provideddependencies were mapped to thecompileconfiguration. Now that we have thecompileOnlyconfiguration I feel that this is a better match (note my project is ajavaproject and not awarproject) -
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.
