Search Gradle plugins

Version 0.1

Created 28 December 2017.

Say thanks to the libraries you depend on in form of a Github star

Using the plugins DSL:

plugins {
  id("com.github.kropp.thanks") version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.kropp.gradle:gradle-plugin-thanks:0.1")
  }
}

apply(plugin = "com.github.kropp.thanks")

Using the plugins DSL:

plugins {
  id "com.github.kropp.thanks" version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.kropp.gradle:gradle-plugin-thanks:0.1"
  }
}

apply plugin: "com.github.kropp.thanks"

Learn how to apply plugins to subprojects