io.github.zcys12173.plugin_router_4_2
Owner: shiyucheng
Configure the automatic registration Gradle plugin for the KRouter component library.
https://github.com/zcys12173/KRouter/tree/main/plugin-router
Sources: https://github.com/zcys12173/KRouter.git
Version 1.0.0-pre (latest)
Created 16 May 2023.
Configure the automatic registration Gradle plugin for the KRouter component library.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.zcys12173.plugin_router_4_2") version "1.0.0-pre"
}
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("io.github.zcys12173.plugin_router_4_2:io.github.zcys12173.plugin_router_4_2.gradle.plugin:1.0.0-pre") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.zcys12173.plugin_router_4_2") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.zcys12173.plugin_router_4_2:io.github.zcys12173.plugin_router_4_2.gradle.plugin:1.0.0-pre") } } apply(plugin = "io.github.zcys12173.plugin_router_4_2")
- Applying plugins to all subprojects .