X-Git-Url: https://git.nmode.ca/signal-cli/blobdiff_plain/4eaec8359423df351a2c978095419e65e8dbac49..b09677a46c4ecf07f305892b51a927e4d7341793:/buildSrc/src/main/kotlin/CheckLibVersionsPlugin.kt diff --git a/buildSrc/src/main/kotlin/CheckLibVersionsPlugin.kt b/buildSrc/src/main/kotlin/CheckLibVersionsPlugin.kt index 701bd6e3..270ae835 100644 --- a/buildSrc/src/main/kotlin/CheckLibVersionsPlugin.kt +++ b/buildSrc/src/main/kotlin/CheckLibVersionsPlugin.kt @@ -9,11 +9,12 @@ import org.gradle.api.artifacts.Dependency class CheckLibVersionsPlugin : Plugin { override fun apply(project: Project) { project.task("checkLibVersions") { - description = "Find any 3rd party libraries which have released new versions to the central Maven repo since we last upgraded." + description = + "Find any 3rd party libraries which have released new versions to the central Maven repo since we last upgraded." doLast { project.configurations.flatMap { it.allDependencies } - .toSet() - .forEach { checkDependency(it) } + .toSet() + .forEach { checkDependency(it) } } } }