搜索 Gradle 插件

版本 0.6.3 (最新版)

0.6.3

创建于 2021 年 8 月 12 日。

Gradle 插件,用于向控制台报告各种总结。

使用 plugins DSL

plugins {
  id("com.github.ksoichiro.console.reporter") version "0.6.3"
}

使用 旧的插件应用方法

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.ksoichiro:gradle-console-reporter:0.6.3")
  }
}

apply(plugin = "com.github.ksoichiro.console.reporter")

使用 plugins DSL

plugins {
  id "com.github.ksoichiro.console.reporter" version "0.6.3"
}

使用 旧的插件应用方法

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.ksoichiro:gradle-console-reporter:0.6.3"
  }
}

apply plugin: "com.github.ksoichiro.console.reporter"

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