be.vbgn.dev-conventions.opinion
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)
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.opinion") version "0.5.3"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("be.vbgn.dev-conventions.opinion:be.vbgn.dev-conventions.opinion.gradle.plugin:0.5.3") }
It can then be applied in the precompiled script plugin:plugins { id("be.vbgn.dev-conventions.opinion") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("be.vbgn.dev-conventions.opinion:be.vbgn.dev-conventions.opinion.gradle.plugin:0.5.3") } } apply(plugin = "be.vbgn.dev-conventions.opinion")
- Applying plugins to all subprojects .