搜索 Gradle 插件

版本 1.2(最新版本)

1.2

创建于 2021 年 12 月 20 日。

利用文本到语音技术为您的项目构建状态提供反馈的 Gradle 插件

使用 plugins DSL

plugins {
  id("io.github.thanosfisherman.serenador") version "1.2"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.thanosfisherman.serenador:serenador-plugin:1.2")
  }
}

apply(plugin = "io.github.thanosfisherman.serenador")

使用 plugins DSL

plugins {
  id "io.github.thanosfisherman.serenador" version "1.2"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.thanosfisherman.serenador:serenador-plugin:1.2"
  }
}

apply plugin: "io.github.thanosfisherman.serenador"

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