org.cthing.build-greeting
Owner:
Baron Roberts
A Gradle plugin that shows build environment information at the start of a Gradle run.
https://github.com/cthing/gradle-build-greeting
Sources: https://github.com/cthing/gradle-build-greeting
Version 1.0.0 (latest)
Created 26 October 2025.
A Gradle plugin that shows build environment information at the start of a Gradle run.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.cthing.build-greeting") version "1.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("org.cthing.build-greeting:org.cthing.build-greeting.gradle.plugin:1.0.0") }It can then be applied in the precompiled script plugin:plugins { id("org.cthing.build-greeting") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.cthing.build-greeting:org.cthing.build-greeting.gradle.plugin:1.0.0") } } apply(plugin = "org.cthing.build-greeting") - Applying plugins to all subprojects .