Search Gradle plugins

Version 1.0.0 (latest)

1.0.0

Created 16 December 2023.

A plugin for generating information about the build.

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.h34t.buildinfo") version "1.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("net.h34t:buildinfo:1.0.0")
      }
    }
    
    apply(plugin = "net.h34t.buildinfo")
  • Applying plugins to all subprojects .