Search Gradle plugins

Version 1.1 (latest)

1.1

Created 28 September 2018.

A Gradle plugin for reading Maven's release.properties in Salt build system

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.pdebicki.salted-component") version "1.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.pdebicki:salted-component-gradle-plugin:1.1")
      }
    }
    
    apply(plugin = "com.github.pdebicki.salted-component")
  • Applying plugins to all subprojects .