com.github.pdebicki.salted-component
Owner: Piotr Debicki
A Gradle plugin for reading Maven's release.properties in Salt build system
https://github.com/pdebicki/salted-component-gradle-plugin
Sources: https://github.com/pdebicki/salted-component-gradle-plugin
Version 1.1-SNAPSHOT
1.1-SNAPSHOT
Created 28 September 2018.
A Gradle plugin for reading Maven's release.properties in Salt build system
Using the plugins DSL:
plugins {
id("com.github.pdebicki.salted-component") version "1.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.pdebicki:salted-component-gradle-plugin:1.1-SNAPSHOT")
}
}
apply(plugin = "com.github.pdebicki.salted-component")
Using the plugins DSL:
plugins {
id "com.github.pdebicki.salted-component" version "1.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.pdebicki:salted-component-gradle-plugin:1.1-SNAPSHOT"
}
}
apply plugin: "com.github.pdebicki.salted-component"