com.bybutter.sisyphus.deploy
Owner: ButterCam
Deploy sisyphus project to environments.
https://github.com/ButterCam/sisyphus
Sources: https://github.com/ButterCam/sisyphus
Version 1.4.11 (latest)
1.4.11
Created 04 August 2022.
Deploy sisyphus project to environments.
Using the plugins DSL:
plugins {
id("com.bybutter.sisyphus.deploy") version "1.4.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.bybutter.sisyphus.tools:sisyphus-project-gradle-plugin:1.4.11")
}
}
apply(plugin = "com.bybutter.sisyphus.deploy")
Using the plugins DSL:
plugins {
id "com.bybutter.sisyphus.deploy" version "1.4.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.bybutter.sisyphus.tools:sisyphus-project-gradle-plugin:1.4.11"
}
}
apply plugin: "com.bybutter.sisyphus.deploy"