Owner:
team
Applies the foojay toolchain resolver for Hygradle projects
Version 0.1.2 (latest)
Created 28 May 2026.
Applies the foojay toolchain resolver for Hygradle projects
Add this plugin to your build using the plugins DSL:
plugins {
id("gg.ginco.hygradle.settings") version "0.1.2"
}
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("gg.ginco.hygradle.settings:gg.ginco.hygradle.settings.gradle.plugin:0.1.2") }It can then be applied in the precompiled script plugin:plugins { id("gg.ginco.hygradle.settings") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("gg.ginco.hygradle.settings:gg.ginco.hygradle.settings.gradle.plugin:0.1.2") } } apply(plugin = "gg.ginco.hygradle.settings") - Applying plugins to all subprojects .