Gradle dependency version syntax

人盡茶涼 提交于 2019-12-22 08:23:33

问题


I'm new to gradle. I have such a dependecy im my gradle script:

compile group: 'com.ning', name: 'async-http-client', version: '[1.6.1,1.9['

Could someone explain me, what does this version: '[1.6.1,1.9[' mean in this case?


回答1:


It's Ivy-style versions range, take a look here. In this case, this means, version can be greater or equal to 1.6.1 and lower than 1.9.



来源:https://stackoverflow.com/questions/32623290/gradle-dependency-version-syntax

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!