com.opencastsoftware.gradle.buildinfo
Owner: Opencast Software Europe Ltd
A Gradle plugin for generating build info as Java code.
https://github.com/opencastsoftware/gradle-build-info
Sources: https://github.com/opencastsoftware/gradle-build-info.git
Version 0.3.1 (latest)
Created 17 July 2023.
A Gradle plugin for generating build info as Java code.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.opencastsoftware.gradle.buildinfo") version "0.3.1"
}
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.opencastsoftware.gradle.buildinfo:com.opencastsoftware.gradle.buildinfo.gradle.plugin:0.3.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.opencastsoftware.gradle.buildinfo") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.opencastsoftware.gradle.buildinfo:com.opencastsoftware.gradle.buildinfo.gradle.plugin:0.3.1") } } apply(plugin = "com.opencastsoftware.gradle.buildinfo")
- Applying plugins to all subprojects .