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.1.1 (latest)
Created 03 October 2019.
Gradle plugin to publish apks to Airwatch Console API
Add this plugin to your build using the plugins DSL:
plugins {
id("luisrjaeger.airwatch-publishing") version "0.1.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("luisrjaeger.airwatch-publishing:luisrjaeger.airwatch-publishing.gradle.plugin:0.1.1") }
It can then be applied in the precompiled script plugin:plugins { id("luisrjaeger.airwatch-publishing") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("luisrjaeger.airwatch-publishing:luisrjaeger.airwatch-publishing.gradle.plugin:0.1.1") } } apply(plugin = "luisrjaeger.airwatch-publishing")
- Applying plugins to all subprojects .