ie.elliot.sputnik
Owner: Elliot Tormey
A gradle plugin multi tool for Android development
Sources: https://github.com/tapadoo/sputnik
Version 0.6.7-SNAPSHOT (latest)
0.6.7-SNAPSHOT
Created 18 April 2017.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
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"