org.patuf.gradle-buildinfo-plugin
Owner: Nikolay Nikolov
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.1
0.0.1
Created 03 June 2017.
Simple plugin that collects information about the build and make it available through an extension map
Using the plugins DSL:
plugins {
id("org.patuf.gradle-buildinfo-plugin") version "0.0.1"
}
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.1")
}
}
apply(plugin = "org.patuf.gradle-buildinfo-plugin")
Using the plugins DSL:
plugins {
id "org.patuf.gradle-buildinfo-plugin" version "0.0.1"
}
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.1"
}
}
apply plugin: "org.patuf.gradle-buildinfo-plugin"