com.trevjonez.android-components
Owner: Trevor Jones
Variant aware android publishing, via `maven-publish` plugin.
https://github.com/trevjonez/android-components-plugin
Sources: git@github.com:trevjonez/android-components-plugin.git
Version 0.1.0 (latest)
Created 07 September 2018.
Variant aware android publishing, via `maven-publish` plugin.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.trevjonez.android-components") version "0.1.0"
}
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("com.trevjonez.android-components:com.trevjonez.android-components.gradle.plugin:0.1.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.trevjonez.android-components") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.trevjonez.android-components:com.trevjonez.android-components.gradle.plugin:0.1.0") } } apply(plugin = "com.trevjonez.android-components")
- Applying plugins to all subprojects .