1

The Gradle documentation is very sparse on how dynamic dependencies are resolved.

There are two styles of dynamic dependency declaration: lib:20.+ and lib:20.0+.

Are they equivalent?

Do 20.1 , 21 and 20.0.1 match these declarations?

Typically, I want to get fixes (x.y versions with x fixed) automatically and manually update to the next major version which can include breaking changes.

Opal
  • 81,889
  • 28
  • 189
  • 210
Teovald
  • 4,369
  • 4
  • 26
  • 45

1 Answers1

2

I have finally found an answer, in the Ivy documentation of all places :

Revision Matches
1.0.+ all revisions starting with '1.0.', like 1.0.1, 1.0.5, 1.0.a
1.1+ all revisions starting with '1.1', like 1.1, 1.1.5, but also 1.10, 1.11

source : http://ant.apache.org/ivy/history/latest-milestone/settings/version-matchers.html

Teovald
  • 4,369
  • 4
  • 26
  • 45