【发布时间】:2016-05-10 07:21:18
【问题描述】:
在 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"
注意:我们的项目中没有任何错误或问题
【问题讨论】:
标签: grails gradle dependencies version grails-3.0