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