grails/gradle如何下载没有指定版本的依赖
How does grails/gradle download the dependencies without version specification
在 Grails 3 项目中,我们使用了一些依赖项,如下所示。对于具有版本的插件或依赖项,它会根据版本规范从远程存储库下载。当我们没有提到版本时,我们假设它正在下载可用的最新依赖项,但是当我们检查休眠依赖项时,它正在项目中下载“4.3.10.6”版本,而远程存储库具有最新版本。那么grails或者gradle如何下载没有版本的依赖呢?
compile "org.grails.plugins:hibernate"
compile "org.grails.plugins:cache"
compile "org.hibernate:hibernate-ehcache"
compile "org.grails.plugins:scaffolding"
compile "org.webjars:bootstrap:3.3.5"
compile "org.webjars:bootstrap-tagsinput:0.5"
注意:我们的项目中没有任何错误或问题
如果未指定版本,Gradle 将使用传递依赖管理,从 Gradle 版本号开始,以及 Gradle 版本所依赖的包。如果传递依赖管理不关心。然后 Gradle 将搜索存储库和平面文件、平面树和依赖项目的层次结构并获取最新版本。
在 Grails 3 项目中,我们使用了一些依赖项,如下所示。对于具有版本的插件或依赖项,它会根据版本规范从远程存储库下载。当我们没有提到版本时,我们假设它正在下载可用的最新依赖项,但是当我们检查休眠依赖项时,它正在项目中下载“4.3.10.6”版本,而远程存储库具有最新版本。那么grails或者gradle如何下载没有版本的依赖呢?
compile "org.grails.plugins:hibernate"
compile "org.grails.plugins:cache"
compile "org.hibernate:hibernate-ehcache"
compile "org.grails.plugins:scaffolding"
compile "org.webjars:bootstrap:3.3.5"
compile "org.webjars:bootstrap-tagsinput:0.5"
注意:我们的项目中没有任何错误或问题
如果未指定版本,Gradle 将使用传递依赖管理,从 Gradle 版本号开始,以及 Gradle 版本所依赖的包。如果传递依赖管理不关心。然后 Gradle 将搜索存储库和平面文件、平面树和依赖项目的层次结构并获取最新版本。