luisrjaeger.airwatch-publishing
Owner: Luís Ricardo Jaeger
Gradle plugin to publish apks to Airwatch Console API
https://github.com/luisrjaeger/airwatch-publishing-readme
Sources: https://github.com/luisrjaeger/airwatch-publishing
Version 0.0.60
0.0.60
Created 23 August 2019.
Gradle plugin to publish apks to Airwatch Console API
Using the plugins DSL:
plugins {
id("luisrjaeger.airwatch-publishing") version "0.0.60"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("br.com.luisrjaeger:airwatch-publishing:0.0.60")
}
}
apply(plugin = "luisrjaeger.airwatch-publishing")
Using the plugins DSL:
plugins {
id "luisrjaeger.airwatch-publishing" version "0.0.60"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "br.com.luisrjaeger:airwatch-publishing:0.0.60"
}
}
apply plugin: "luisrjaeger.airwatch-publishing"