]> nmode's Git Repositories - signal-cli/blobdiff - buildSrc/src/main/kotlin/CheckLibVersionsPlugin.kt
Reformat code
[signal-cli] / buildSrc / src / main / kotlin / CheckLibVersionsPlugin.kt
index 701bd6e3df11612d472b45462f51246db94acd31..270ae83540bc75701f4e30c9ee4ef53afeb8b104 100644 (file)
@@ -9,11 +9,12 @@ import org.gradle.api.artifacts.Dependency
 class CheckLibVersionsPlugin : Plugin<Project> {
     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) }
             }
         }
     }