X-Git-Url: https://git.nmode.ca/signal-cli/blobdiff_plain/795b73df87e411f0cb028426f0f5dc94b2981e42..d1e760f4470395a02cde9d806c3f973e1b9e90e3:/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) } } } }