搜索Gradle插件

io.github.alexeytereshchenko.guardian

此Gradle插件是一个聚合器,用于配置Error Prone 和 CheckStyle,旨在减少样板代码并确保跨项目的一致质量。它自动应用Git钩子在每次推送前运行测试和构建,增强代码可靠性和开发流程。

https://github.com/alexeytereshchenko/CodeGuardian

来源: https://github.com/alexeytereshchenko/CodeGuardian

版本 1.2.5 (最新版本)

1.2.5

创建日期:2024年2月9日。

此Gradle插件是一个聚合器,用于配置Error Prone 和 CheckStyle,旨在减少样板代码并确保跨项目的一致质量。它自动应用Git钩子在每次推送前运行测试和构建,增强代码可靠性和开发流程。

使用 插件DSL

plugins {
  id("io.github.alexeytereshchenko.guardian") version "1.2.5"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.alexeytereshchenko.guardian:plugin:1.2.5")
  }
}

apply(plugin = "io.github.alexeytereshchenko.guardian")

使用 插件DSL

plugins {
  id "io.github.alexeytereshchenko.guardian" version "1.2.5"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.alexeytereshchenko.guardian:plugin:1.2.5"
  }
}

apply plugin: "io.github.alexeytereshchenko.guardian"

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