tw.thinkyes.kmm.routine.plugin
Owner: nathan.proj
KMM routine plugin
https://gitlab.com/gradle-plugin1/kmm-routine-plugin
Sources: https://gitlab.com/gradle-plugin1/demo_gradle_plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("tw.thinkyes.kmm.routine.plugin") version "0.0.9"
}
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("tw.thinkyes.kmm.routine.plugin:tw.thinkyes.kmm.routine.plugin.gradle.plugin:0.0.9") }
It can then be applied in the precompiled script plugin:plugins { id("tw.thinkyes.kmm.routine.plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("tw.thinkyes.kmm.routine.plugin:tw.thinkyes.kmm.routine.plugin.gradle.plugin:0.0.9") } } apply(plugin = "tw.thinkyes.kmm.routine.plugin")
- Applying plugins to all subprojects .