run.halo.plugin.devtools
Owner:
johnniang
A plugin devtools for Halo plugin
https://github.com/halo-sigs/halo-gradle-plugin
Sources: https://github.com/halo-sigs/halo-gradle-plugin.git
Version 0.6.0 (latest)
Created 09 June 2025.
A plugin devtools for Halo plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("run.halo.plugin.devtools") version "0.6.0"
}
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("run.halo.plugin.devtools:run.halo.plugin.devtools.gradle.plugin:0.6.0") }
It can then be applied in the precompiled script plugin:plugins { id("run.halo.plugin.devtools") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("run.halo.plugin.devtools:run.halo.plugin.devtools.gradle.plugin:0.6.0") } } apply(plugin = "run.halo.plugin.devtools")
- Applying plugins to all subprojects .