Search Gradle plugins

Version 2.0.4 (latest)

Created 02 January 2024.

Computes the codeowners of the project's classes

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.gmazzo.codeowners:base-plugin:2.0.4")
  }
}

apply(plugin = "io.github.gmazzo.codeowners")

Using the plugins DSL:

plugins {
  id "io.github.gmazzo.codeowners" version "2.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.gmazzo.codeowners:base-plugin:2.0.4"
  }
}

apply plugin: "io.github.gmazzo.codeowners"

Learn how to apply plugins to subprojects