net.gradleutil.gradle-conf
Owner: gradleutil-code
Configure your Gradle builds with HOCON
https://github.com/gradleutil/gradle-conf
Sources: https://github.com/gradleutil/gradle-conf
Version 1.3.1 (latest)
Created 15 August 2024.
Configure your Gradle builds with HOCON
Add this plugin to your build using the plugins DSL:
plugins {
id("net.gradleutil.gradle-conf") version "1.3.1"
}
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("net.gradleutil.gradle-conf:net.gradleutil.gradle-conf.gradle.plugin:1.3.1") }
It can then be applied in the precompiled script plugin:plugins { id("net.gradleutil.gradle-conf") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.gradleutil.gradle-conf:net.gradleutil.gradle-conf.gradle.plugin:1.3.1") } } apply(plugin = "net.gradleutil.gradle-conf")
- Applying plugins to all subprojects .