se.premex.ownership
Owner: Erik Eelde
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)
0.0.11
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.
Using the plugins DSL:
plugins {
id("se.premex.ownership") version "0.0.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("se.premex:ownership-gradle-plugin:0.0.11")
}
}
apply(plugin = "se.premex.ownership")
Using the plugins DSL:
plugins {
id "se.premex.ownership" version "0.0.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "se.premex:ownership-gradle-plugin:0.0.11"
}
}
apply plugin: "se.premex.ownership"