1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 16:28:12 -07:00

Refactor CheckVersions to work on individual projects.

This commit is contained in:
Cedric Beust 2016-06-27 02:21:05 -08:00
parent 040bcd173b
commit edb119c6b1
2 changed files with 20 additions and 20 deletions

View file

@ -24,7 +24,7 @@ class KobaltPlugin @Inject constructor(val checkVersions: CheckVersions, val upd
@Task(name = "checkVersions", description = "Display all the outdated dependencies")
fun taskCheckVersions(project: Project) : TaskResult {
checkVersions.run(context.allProjects)
checkVersions.run(project)
return TaskResult()
}