Search Gradle plugins

Version 1.2 (latest)

Created 20 December 2021.

Gradle plugin utilizing text to speech to give you feedback about your project's build state

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects