Search Gradle plugins

be.vbgn.dev-conventions

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

Created 26 October 2020.

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.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("be.vbgn.gradle:dev-conventions-plugin:0.2.0")
  }
}

apply(plugin = "be.vbgn.dev-conventions")

Using the plugins DSL:

plugins {
  id "be.vbgn.dev-conventions" version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "be.vbgn.gradle:dev-conventions-plugin:0.2.0"
  }
}

apply plugin: "be.vbgn.dev-conventions"

Learn how to apply plugins to subprojects