Search Gradle plugins

Version 0.2

Created 04 March 2019.

A custom build automation plugin for Android build automation.

Using the plugins DSL:

plugins {
  id("com.github.aman400.gradlebot") version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.aman400.gradlebot:gradlebot:0.2")
  }
}

apply(plugin = "com.github.aman400.gradlebot")

Using the plugins DSL:

plugins {
  id "com.github.aman400.gradlebot" version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.aman400.gradlebot:gradlebot:0.2"
  }
}

apply plugin: "com.github.aman400.gradlebot"

Learn how to apply plugins to subprojects