com.gotokeep.gradle.plugins.combuild
Owner:
zhangchangyi
Android gradle plugin to inject components for modularization.
Sources: https://github.com/gradle-guides/greeting-plugin-example
Version 1.3.6 (latest)
Created 05 June 2018.
Android gradle plugin to inject components for modularization.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.gotokeep.gradle.plugins.combuild") version "1.3.6"
}
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.gotokeep.gradle.plugins.combuild:com.gotokeep.gradle.plugins.combuild.gradle.plugin:1.3.6") }
It can then be applied in the precompiled script plugin:plugins { id("com.gotokeep.gradle.plugins.combuild") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.gotokeep.gradle.plugins.combuild:com.gotokeep.gradle.plugins.combuild.gradle.plugin:1.3.6") } } apply(plugin = "com.gotokeep.gradle.plugins.combuild")
- Applying plugins to all subprojects .