Search Gradle plugins

io.github.gregoranders.project-configuration

Following the principle of convention over configuration this Gradle plugin provides default configurations for various plugins of a Gradle JVM project so that you do not need to copy boilerplate code throughout your projects.

https://github.com/gregoranders/gradle-project-configuration

Sources: https://github.com/gregoranders/gradle-project-configuration

Version 0.0.5

0.0.5

Created 16 January 2022.

Following the principle of convention over configuration this Gradle plugin provides default configurations for various plugins of a Gradle JVM project so that you do not need to copy boilerplate code throughout your projects.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.gregoranders.project-configuration") version "0.0.5"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.gregoranders:project-configuration:0.0.5")
      }
    }
    
    apply(plugin = "io.github.gregoranders.project-configuration")
  • Applying plugins to all subprojects .