Search Gradle plugins

org.patuf.gradle-buildinfo-plugin

Simple plugin that collects information about the build and make it available through an extension map

https://github.com/patuf/gradle-buildinfo-plugin

Sources: https://github.com/patuf/gradle-release-plugin.git

Version 0.0.4 (latest)

Created 09 June 2017.

Simple plugin that collects information about the build and makes it available through an extension map

Using the plugins DSL:

plugins {
  id("org.patuf.gradle-buildinfo-plugin") version "0.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.patuf.gradle:gradle-buildinfo-plugin:0.0.4")
  }
}

apply(plugin = "org.patuf.gradle-buildinfo-plugin")

Using the plugins DSL:

plugins {
  id "org.patuf.gradle-buildinfo-plugin" version "0.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.patuf.gradle:gradle-buildinfo-plugin:0.0.4"
  }
}

apply plugin: "org.patuf.gradle-buildinfo-plugin"

Learn how to apply plugins to subprojects