2 gradle依赖项之间的区别是什么

时间:2017-09-05 14:07:05

标签: dependencies build.gradle

之间的区别是什么
compile group: 'org.springframework.data',
name: 'spring-data-jpa',
version: '1.11.6.RELEASE'

compile("org.springframework.boot:spring-boot-starter-data-jpa")

无论version ('1.11.6.RELEASE')? 谢谢。

1 个答案:

答案 0 :(得分:2)

Gradle中的远程依赖项的结构如下:

compile 'group:name:version'

或替代语法:

compile group: 'xxx', name: 'xxxxx', version: 'xxxx'

然后你可以使用:

dependencies { 
    compile "org.springframework.data:spring-data-jpa:1.11.6.RELEASE" 
}

dependencies { 
    compile group: 'org.springframework.data', name: 'spring-data-jpa', version: '1.11.6.RELEASE'
}