maven&gradle 依赖指定版本范围或者最新版本

因为现在业务都会做纵向切割,那么核心依赖包就必不可少了,但是核心依赖包会经常性更新,那么子业务不是每次都要修改version版本?很麻烦,我们知道gradle的版本依赖可以以maven的形式进行编写,那么version就可以做一些控制了。注意:version必选。

  • (,1.0] x <= 1.0
  • 1.0 "Soft" requirement on 1.0 (just a recommendation - helps select the correct version if it matches all ranges)
  • [1.0] Hard requirement on 1.0
  • [1.2,1.3] 1.2 <= x <= 1.3
  • [1.0,2.0) 1.0 <= x < 2.0
  • [1.5,) x >= 1.5
  • (,1.0],[1.2,) x <= 1.0 or x >= 1.2. Multiple sets are comma-separated
  • (,1.1),(1.1,) This excludes 1.1 if it is known not to work in combination with this library
把version写成这样就ok了。

你可能感兴趣的:(开发,开源)