com.bybutter.sisyphus.project
Owner: ButterCam
Plugin for developing project based on sisyphus framework.
https://github.com/ButterCam/sisyphus
Sources: https://github.com/ButterCam/sisyphus
Version 2.1.10 (latest)
2.1.10
Created 09 November 2023.
Easy configure develop environment for project based on sisyphus framework.
Using the plugins DSL:
plugins {
id("com.bybutter.sisyphus.project") version "2.1.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.bybutter.sisyphus.tools:sisyphus-project-gradle-plugin:2.1.10")
}
}
apply(plugin = "com.bybutter.sisyphus.project")
Using the plugins DSL:
plugins {
id "com.bybutter.sisyphus.project" version "2.1.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.bybutter.sisyphus.tools:sisyphus-project-gradle-plugin:2.1.10"
}
}
apply plugin: "com.bybutter.sisyphus.project"