be.vbgn.dev-conventions
Owner: Lars Vierbergen
A gradle plugin that automatically applies development conventions and/or opinions based on the plugins that are applied to your project
https://github.com/vierbergenlars/dev-conventions-gradle-plugin
Sources: https://github.com/vierbergenlars/dev-conventions-gradle-plugin
Version 0.5.3 (latest)
0.5.3
Created 10 December 2021.
A gradle plugin that automatically applies development conventions and/or opinions based on the plugins that are applied to your project
Using the plugins DSL:
plugins {
id("be.vbgn.dev-conventions") version "0.5.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("be.vbgn.gradle:dev-conventions-plugin:0.5.3")
}
}
apply(plugin = "be.vbgn.dev-conventions")
Using the plugins DSL:
plugins {
id "be.vbgn.dev-conventions" version "0.5.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "be.vbgn.gradle:dev-conventions-plugin:0.5.3"
}
}
apply plugin: "be.vbgn.dev-conventions"