Search Gradle plugins

be.vbgn.dev-conventions.opinion

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)

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.opinion") 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.opinion")

Using the plugins DSL:

plugins {
  id "be.vbgn.dev-conventions.opinion" 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.opinion"

Learn how to apply plugins to subprojects