io.github.gregoranders.project-configuration
Owner: Gregor Anders
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.9 (latest)
0.0.9
Created 04 June 2023.
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.
Using the plugins DSL:
plugins {
id("io.github.gregoranders.project-configuration") version "0.0.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.gregoranders:project-configuration:0.0.9")
}
}
apply(plugin = "io.github.gregoranders.project-configuration")
Using the plugins DSL:
plugins {
id "io.github.gregoranders.project-configuration" version "0.0.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.gregoranders:project-configuration:0.0.9"
}
}
apply plugin: "io.github.gregoranders.project-configuration"