之间的区别是什么
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')
?
谢谢。
答案 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'
}