com.detoeuf.gradle-git-properties
Owner: Jean Detoeuf
Produce git.properties for spring-boot-actuator
http://github.com/thebignet/gradle-git-properties
Sources: https://github.com/n0mer/gradle-git-properties
Version 1.4.9 (latest)
Created 15 January 2016.
Produce git.properties for spring-boot-actuator
Add this plugin to your build using the plugins DSL:
plugins {
id("com.detoeuf.gradle-git-properties") version "1.4.9"
}
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.detoeuf.gradle-git-properties:com.detoeuf.gradle-git-properties.gradle.plugin:1.4.9") }
It can then be applied in the precompiled script plugin:plugins { id("com.detoeuf.gradle-git-properties") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.detoeuf.gradle-git-properties:com.detoeuf.gradle-git-properties.gradle.plugin:1.4.9") } } apply(plugin = "com.detoeuf.gradle-git-properties")
- Applying plugins to all subprojects .