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.11 (latest)

Created 02 December 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.

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("se.premex.ownership:se.premex.ownership.gradle.plugin:0.0.11")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("se.premex.ownership")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("se.premex.ownership:se.premex.ownership.gradle.plugin:0.0.11")
      }
    }
    
    apply(plugin = "se.premex.ownership")
  • Applying plugins to all subprojects .