Search Gradle plugins

Version 1.0.5 (latest)

Created 23 April 2021.

Gradle plugin for sending tweets via tasks.

Using the plugins DSL:

plugins {
  id("net.darkhax.tweedle") version "1.0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.darkhax.tweedle:Tweedle:1.0.5")
  }
}

apply(plugin = "net.darkhax.tweedle")

Using the plugins DSL:

plugins {
  id "net.darkhax.tweedle" version "1.0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.darkhax.tweedle:Tweedle:1.0.5"
  }
}

apply plugin: "net.darkhax.tweedle"

Learn how to apply plugins to subprojects