Search Gradle plugins

se.premex.ownership

Check for existance of OWNERSHIP.toml in subprojects and verify that it contains ownership information. Will soon also check for description and have additional tasks to generate code owner files that are understood by source control systems. Attaches to the check

https://github.com/premex-ab/ownership-gradle-plugin

Sources: https://github.com/premex-ab/ownership-gradle-plugin.git

Version 0.0.1

Created 07 February 2022.

Check for existance of OWNERSHIP.toml in subprojects and verify that it contains ownership information.

Will soon also check for description and have additional tasks to generate code owner files that are understood by source control systems.

Attaches to the check

Using the plugins DSL:

plugins {
  id("se.premex.ownership") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("se.premex:ownership-gradle-plugin:0.0.1")
  }
}

apply(plugin = "se.premex.ownership")

Using the plugins DSL:

plugins {
  id "se.premex.ownership" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "se.premex:ownership-gradle-plugin:0.0.1"
  }
}

apply plugin: "se.premex.ownership"

Learn how to apply plugins to subprojects