Search Gradle plugins

Version 0.1.1 (latest)

Created 24 September 2014.

No version description available.

Using the plugins DSL:

plugins {
  id("net.alchim31.gradle.getdown") version "0.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.alchim31.gradle:gradle-getdown-plugin:0.1.1")
  }
}

apply(plugin = "net.alchim31.gradle.getdown")

Using the plugins DSL:

plugins {
  id "net.alchim31.gradle.getdown" version "0.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.alchim31.gradle:gradle-getdown-plugin:0.1.1"
  }
}

apply plugin: "net.alchim31.gradle.getdown"

Learn how to apply plugins to subprojects