com.gryphonet.gradle.mapplugin
Owner: Simon Mier Yakov
A plugin for automatic upload of applications map files as partof the build proccess
Sources: https://bitbucket.org/gryphteam/buildintegration
Version 0.1.0 (latest)
0.1.0
Created 18 September 2016.
A plugin for automatic upload of applications map files as partof the build proccess
Using the plugins DSL:
plugins {
id("com.gryphonet.gradle.mapplugin") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.gryphonet.gradle:gradle-gryphonet-plugin:0.1.0")
}
}
apply(plugin = "com.gryphonet.gradle.mapplugin")
Using the plugins DSL:
plugins {
id "com.gryphonet.gradle.mapplugin" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.gryphonet.gradle:gradle-gryphonet-plugin:0.1.0"
}
}
apply plugin: "com.gryphonet.gradle.mapplugin"