Search Gradle plugins

Version 1.2.0

1.2.0

Created 10 October 2023.

Configure your Gradle builds with HOCON

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.gradleutil.gradle-conf") version "1.2.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("net.gradleutil:gradle-conf-plugin:1.2.0")
      }
    }
    
    apply(plugin = "net.gradleutil.gradle-conf")
  • Applying plugins to all subprojects .