io.github.gmazzo.codeowners.kotlin
所有权: Guillermo Mazzola
一个将CODEOWNERS传播到Kotlin类的Gradle插件
https://github.com/gmazzo/gradle-codeowners-plugin
来源: https://github.com/gmazzo/gradle-codeowners-plugin
使用 plugins DSL
plugins {
id("io.github.gmazzo.codeowners.kotlin") version "2.1.0"
}
使用 旧的插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.gmazzo.codeowners:kotlin-plugin:2.1.0")
}
}
apply(plugin = "io.github.gmazzo.codeowners.kotlin")
使用 plugins DSL
plugins {
id "io.github.gmazzo.codeowners.kotlin" version "2.1.0"
}
使用 旧的插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.gmazzo.codeowners:kotlin-plugin:2.1.0"
}
}
apply plugin: "io.github.gmazzo.codeowners.kotlin"