搜索 Gradle 插件

版本 1.1(最新版)

1.1

创建于 2023 年 11 月 14 日。

更改:- 对配置缓存的支持

使用 插件 DSL

plugins {
  id("io.github.bjornvester.codenarcprinter") version "1.1"
}

使用 旧插件应用

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

apply(plugin = "io.github.bjornvester.codenarcprinter")

使用 插件 DSL

plugins {
  id "io.github.bjornvester.codenarcprinter" version "1.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.bjornvester.codenarcprinter:plugin:1.1"
  }
}

apply plugin: "io.github.bjornvester.codenarcprinter"

学习如何应用插件到子项目