makes checkLibVersions gradle 5 compatible

This commit is contained in:
Lars K.W. Gohlke 2018-11-29 23:26:51 +01:00 committed by AsamK
parent e809792467
commit 65390ef1d8

View file

@ -47,7 +47,8 @@ run {
// Find any 3rd party libraries which have released new versions
// to the central Maven repo since we last upgraded.
// http://daniel.gredler.net/2011/08/08/gradle-keeping-libraries-up-to-date/
task checkLibVersions << {
task checkLibVersions {
doLast {
def checked = [:]
allprojects {
configurations.each { configuration ->
@ -79,3 +80,4 @@ task checkLibVersions << {
}
}
}
}