此文章发布于67
个月前,部分信息可能已经过时
,请自行斟酌确认。
通过def
定义版本变量,然后在依赖调用即可,这样便于版本的统一管理,也便于查看。def 定义的字符串变量,通过 $
符号即可引用,需要注意的是,需要用 def 定义的变量时,字符串需要用双引号 ""
而不能用单引号 ''
。
def springBootVersion = '2.1.5.RELEASE'
dependencies {
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: "$springBootVersion"
compile group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa', version: "$springBootVersion"
}