Search Gradle plugins

Version 0.6.7-SNAPSHOT (latest)

Created 18 April 2017.

A gradle plugin multi tool for Android development

Using the plugins DSL:

plugins {
  id("ie.elliot.sputnik") version "0.6.7-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.ie.elliot:sputnik:0.6.7-SNAPSHOT")
  }
}

apply(plugin = "ie.elliot.sputnik")

Using the plugins DSL:

plugins {
  id "ie.elliot.sputnik" version "0.6.7-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.ie.elliot:sputnik:0.6.7-SNAPSHOT"
  }
}

apply plugin: "ie.elliot.sputnik"

Learn how to apply plugins to subprojects