net.wooga.amplify
Owner: Manne Endres
a amplify plugin for Gradle.
https://wooga.github.io/atlas-amplify/
Sources: https://github.com/wooga/atlas-amplify
Using the plugins DSL:
plugins {
id("net.wooga.amplify") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.wooga.gradle:amplify:1.1.0")
}
}
apply(plugin = "net.wooga.amplify")
Using the plugins DSL:
plugins {
id "net.wooga.amplify" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.wooga.gradle:amplify:1.1.0"
}
}
apply plugin: "net.wooga.amplify"