Search Gradle plugins

com.tejasm.gradle.gradletext

A plugin that notifies a user of build status via SMS

http://example.com

Sources: https://github.com/tm1287/GradleText

Version 1.0.0 (latest)

Created 24 March 2020.

A plugin that notifies a user of build status via SMS

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.tejasm.gradle.gradletext") version "1.0.0"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.tejasm.gradle.gradletext:com.tejasm.gradle.gradletext.gradle.plugin:1.0.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.tejasm.gradle.gradletext")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.tejasm.gradle.gradletext:com.tejasm.gradle.gradletext.gradle.plugin:1.0.0")
      }
    }
    
    apply(plugin = "com.tejasm.gradle.gradletext")
  • Applying plugins to all subprojects .