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.2

Created 08 February 2022.

Check for existence of OWNERSHIP.toml in subprojects and verify that it contains ownership information. It will validate the syntax in the file against the toml specification

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 task to perform validation on OWNERSHIP.toml files.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "se.premex.ownership"

Learn how to apply plugins to subprojects