Search Gradle plugins

Version 1.0.7

1.0.7

Created 22 January 2023.

A Gradle plugin to propagate CODEOWNERS to JVM classes

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.gmazzo.codeowners") version "1.0.7"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.gmazzo.codeowners:plugin:1.0.7")
      }
    }
    
    apply(plugin = "io.github.gmazzo.codeowners")
  • Applying plugins to all subprojects .