Search Gradle plugins

Version 1.0.1 (latest)

1.0.1

Created 18 September 2015.

Creates git properties file for spring boot

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.homedepot.gitprops") version "1.0.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.homedepot:GitPropsPlugin:1.0.1")
      }
    }
    
    apply(plugin = "com.homedepot.gitprops")
  • Applying plugins to all subprojects .