Search Gradle plugins

io.cloudflight.autoconfigure-settings

An opinionated approach to configure a gradle project automatically by convention. It supports to automatically configure various plugins to reduce boilerplate code in gradle projects.

https://github.com/cloudflightio/autoconfigure-gradle-plugin

Sources: https://github.com/cloudflightio/autoconfigure-gradle-plugin.git

Version 0.10.0

0.10.0

Created 04 July 2023.

An opinionated approach to configure a gradle project automatically by convention. It supports to automatically configure various plugins to reduce boilerplate code in gradle projects.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.cloudflight.autoconfigure-settings") version "0.10.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.cloudflight.gradle:autoconfigure:0.10.0")
      }
    }
    
    apply(plugin = "io.cloudflight.autoconfigure-settings")
  • Applying plugins to all subprojects .