我正在使用Spring Boot应用程序,未在我的build.gradle文件中指定任何版本,请参见以下代码。
dependencies {
compile('org.springframework.boot:spring-boot-starter-data-jpa')
compile('org.springframework.boot:spring-boot-starter-security')
compile('org.springframework.boot:spring-boot-starter-web')
compile('org.postgresql:postgresql')
}
gradle如何自动确定版本?
答案 0 :(得分:-1)
如果我们谈论Gradle版本。有两种选择:
./gradlew build
wrapper details gradle --version
instalation details 如果我们谈论依赖关系,我们还有两个选择:
Gradle将从已添加的存储库repository details
使用bom指定一组工件版本bom details