com.markklim.plugins.smv
Owner:
Mark Klimenko
Set minor version to project version in properties file
https://github.com/MarkKlimenko/plugins
Sources: https://github.com/MarkKlimenko/plugins
Version 0.11 (latest)
Created 17 September 2017.
Set minor version to project version in properties file
Add this plugin to your build using the plugins DSL:
plugins {
id("com.markklim.plugins.smv") version "0.11"
}
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.markklim.plugins.smv:com.markklim.plugins.smv.gradle.plugin:0.11") }
It can then be applied in the precompiled script plugin:plugins { id("com.markklim.plugins.smv") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.markklim.plugins.smv:com.markklim.plugins.smv.gradle.plugin:0.11") } } apply(plugin = "com.markklim.plugins.smv")
- Applying plugins to all subprojects .