Search Gradle plugins

io.cloudflight.autoconfigure-gradle

A 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.8.10

Created 07 December 2022.

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-gradle") version "0.8.10"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "io.cloudflight.autoconfigure-gradle" version "0.8.10"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects