io.github.gmazzo.codeowners
Owner: Guillermo Mazzola
A Gradle plugin to propagate CODEOWNERS to JVM classes
https://github.com/gmazzo/gradle-codeowners-plugin
Sources: https://github.com/gmazzo/gradle-codeowners-plugin
Version 2.1.0 (latest)
2.1.0
Created 03 June 2024.
Computes the codeowners of the project's classes
Using the plugins DSL:
plugins {
id("io.github.gmazzo.codeowners") version "2.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.gmazzo.codeowners:base-plugin:2.1.0")
}
}
apply(plugin = "io.github.gmazzo.codeowners")
Using the plugins DSL:
plugins {
id "io.github.gmazzo.codeowners" version "2.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.gmazzo.codeowners:base-plugin:2.1.0"
}
}
apply plugin: "io.github.gmazzo.codeowners"