com.homedepot.gitprops
Owner: Thomas Gamble
Creates git properties file for spring boot
http://github.com/homedepot/gitpropsplugin/
Sources: https://github.com/homedepot/gitpropsplugin/
Version 1.0.1 (latest)
1.0.1
Created 18 September 2015.
Creates git properties file for spring boot
Using the plugins DSL:
plugins {
id("com.homedepot.gitprops") version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.homedepot:GitPropsPlugin:1.0.1")
}
}
apply(plugin = "com.homedepot.gitprops")
Using the plugins DSL:
plugins {
id "com.homedepot.gitprops" version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.homedepot:GitPropsPlugin:1.0.1"
}
}
apply plugin: "com.homedepot.gitprops"