com.leandronunes85.log-format-enforcer
Owner:
Leandro Nunes
The goal of this plugin is to provide teams with a way of enforcing a certain logging message style in their projects.
https://github.com/leandronunes85/log-format-enforcer
Sources: https://github.com/leandronunes85/log-format-enforcer.git
Version 2.0.0 (latest)
Created 15 April 2025.
The goal of this plugin is to provide teams with a way of enforcing a certain logging message style in their projects.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.leandronunes85.log-format-enforcer") version "2.0.0"
}
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("com.leandronunes85.log-format-enforcer:com.leandronunes85.log-format-enforcer.gradle.plugin:2.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.leandronunes85.log-format-enforcer") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.leandronunes85.log-format-enforcer:com.leandronunes85.log-format-enforcer.gradle.plugin:2.0.0") } } apply(plugin = "com.leandronunes85.log-format-enforcer")
- Applying plugins to all subprojects .