com.starter.versioning
Owner: Mateusz Kwieciński
Set of plugins that might be useful for Multi-Module Android projects.
https://github.com/usefulness/project-starter/
Sources: https://github.com/mateuszkwiecinski/project-starter/
Version 0.40.1
Created 10 December 2021.
Set of plugins that might be useful for Multi-Module Android projects.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.starter.versioning") version "0.40.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("com.starter.versioning:com.starter.versioning.gradle.plugin:0.40.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.starter.versioning") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.starter.versioning:com.starter.versioning.gradle.plugin:0.40.1") } } apply(plugin = "com.starter.versioning")
- Applying plugins to all subprojects .