I know this is not specifically kotlin-gradle spec...
# gradle
r
I know this is not specifically kotlin-gradle specific but I'll give it a shot anyway: in groovy-gradle I can define dependencies in two different ways:
compile 'group:artifact:version'
and
compile group: 'group', name: 'artifact'. version: 'version'
is there a practical difference? is one preffered?