XDR
XDR

Reputation: 4470

See if newer versions of artifacts in Gradle build exist in repository

For artifact dependencies used by a Gradle build, is there any way to see if newer versions of those artifacts exist in any repository used by that build?

Also, what algorithm does such a tool used to determine "newer"?

Upvotes: 0

Views: 136

Answers (1)

Louis Jacomet
Louis Jacomet

Reputation: 14500

Have a look at gradle-versions-plugin.

The documentation also explains what is considered as a more recent or latest version.

Note also that an alternative as of Gradle 4.8 is to combine dynamic versions and dependency locking.

Upvotes: 1

Related Questions