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

Add this plugin to your build using the plugins DSL:

plugins {
  id("be.vbgn.dev-conventions") version "0.5.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("be.vbgn.gradle:dev-conventions-plugin:0.5.3")
      }
    }
    
    apply(plugin = "be.vbgn.dev-conventions")
  • Applying plugins to all subprojects .