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

io.gitlab.arturbosch.detekt.extensions.CustomDetektReport.kt Maven / Gradle / Ivy

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

import org.gradle.api.tasks.Internal
import org.gradle.api.tasks.OutputFile
import java.io.File

class CustomDetektReport {

    @Internal
    var reportId: String? = null

    @OutputFile
    var destination: File? = null

    override fun toString(): String {
        return "CustomDetektReport(reportId=$reportId, destination=$destination)"
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy