io.github.gmazzo.codeowners.compiler.CodeOwnersConfigurationKeys.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-compiler Show documentation
Show all versions of kotlin-compiler Show documentation
CodeOwners Kotlin Compiler Plugin
The newest version!
package io.github.gmazzo.codeowners.compiler
import org.jetbrains.kotlin.config.CompilerConfigurationKey
import java.io.File
object CodeOwnersConfigurationKeys {
val CODEOWNERS_ROOT: CompilerConfigurationKey = CompilerConfigurationKey.create("repository root")
val CODEOWNERS_FILE: CompilerConfigurationKey = CompilerConfigurationKey.create(".CODEOWNERS file")
val MAPPINGS_OUTPUT: CompilerConfigurationKey = CompilerConfigurationKey.create(".CODEOWNERS mappings output file")
}