搜索 Gradle 插件

se.premex.ownership

所有者: Erik Eelde

检查子项目中 OWNERSHIP.toml 的存在性并验证其包含所有者信息。也将很快检查描述,并添加生成源控制系统可理解的代码所有者文件的附加任务。附加到检查任务

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

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

版本 0.0.11 (最新)

0.0.11

创建于 2022年12月2日。

检查子项目中 OWNERSHIP.toml 的存在性并验证其包含所有者信息。它将对文件中的语法与 toml 规范进行验证。也将很快检查描述,并添加生成源控制系统可理解的代码所有者文件的附加任务。附加到检查任务以执行 OWNERSHIP.toml 文件的验证。

使用 插件 DSL

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

使用 旧的插件应用方式

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

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

使用 插件 DSL

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

使用 旧的插件应用方式

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

apply plugin: "se.premex.ownership"

了解如何将插件应用到子项目中