All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.gitlab.arturbosch.detekt.cli.runners.VersionPrinter.kt Maven / Gradle / Ivy

There is a newer version: 1.23.7
Show newest version
package io.gitlab.arturbosch.detekt.cli.runners

import io.gitlab.arturbosch.detekt.core.whichDetekt
import java.io.PrintStream

class VersionPrinter(private val outputPrinter: PrintStream) : Executable {

    override fun execute() {
        val version = whichDetekt()
        if (version != null) {
            outputPrinter.println(version)
        } else {
            throw IllegalStateException("Can't find the detekt version")
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy