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.9.5

Created 20 April 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.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.cloudflight.gradle:autoconfigure:0.9.5")
  }
}

apply(plugin = "io.cloudflight.autoconfigure-settings")

Using the plugins DSL:

plugins {
  id "io.cloudflight.autoconfigure-settings" version "0.9.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.cloudflight.gradle:autoconfigure:0.9.5"
  }
}

apply plugin: "io.cloudflight.autoconfigure-settings"

Learn how to apply plugins to subprojects