nebula.gradle-stash
Owner: Nebula Plugins
Gradle plugin to do various Stash SCM tasks
https://github.com/nebula-plugins/gradle-stash-plugin
Sources: https://github.com/nebula-plugins/gradle-stash-plugin.git
Version 7.0.1
7.0.1
Created 02 November 2019.
Gradle plugin to do various Stash SCM tasks
Using the plugins DSL:
plugins {
id("nebula.gradle-stash") version "7.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:gradle-stash-plugin:7.0.1")
}
}
apply(plugin = "nebula.gradle-stash")
Using the plugins DSL:
plugins {
id "nebula.gradle-stash" version "7.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:gradle-stash-plugin:7.0.1"
}
}
apply plugin: "nebula.gradle-stash"