io.github.oojohn6oo.drouterlite.assembler
Owner: Liu
gradle plugin to assemble routers and services in each module
https://github.com/oOJohn6Oo/DRouterLite
Sources: https://github.com/oOJohn6Oo/DRouterLite
Version 1.0.0-alpha04
Created 12 April 2024.
Gradle plugin to assemble routers and services in each module
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.oojohn6oo.drouterlite.assembler") version "1.0.0-alpha04"
}
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.oojohn6oo.drouterlite.assembler:io.github.oojohn6oo.drouterlite.assembler.gradle.plugin:1.0.0-alpha04") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.oojohn6oo.drouterlite.assembler") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.oojohn6oo.drouterlite.assembler:io.github.oojohn6oo.drouterlite.assembler.gradle.plugin:1.0.0-alpha04") } } apply(plugin = "io.github.oojohn6oo.drouterlite.assembler")
- Applying plugins to all subprojects .