io.gitlab.arturbosch.detekt.cli.runners.VersionPrinter.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of detekt-cli Show documentation
Show all versions of detekt-cli Show documentation
Static code analysis for Kotlin
package io.gitlab.arturbosch.detekt.cli.runners
import io.github.detekt.tooling.api.VersionProvider
class VersionPrinter(private val outputPrinter: Appendable) : Executable {
override fun execute() {
outputPrinter.appendLine(VersionProvider.load().current())
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy