io.github.klahap.fraploy
Owner: Klaus Happacher
A Gradle plugin to deploy Frappe app updates to Frappe Cloud.
https://github.com/klahap/fraploy
Sources: https://github.com/klahap/fraploy.git
Version 1.0.1 (latest)
1.0.1
Created 14 August 2024.
A Gradle plugin to deploy Frappe app updates to Frappe Cloud.
Using the plugins DSL:
plugins {
id("io.github.klahap.fraploy") version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.klahap.fraploy:fraploy:1.0.1")
}
}
apply(plugin = "io.github.klahap.fraploy")
Using the plugins DSL:
plugins {
id "io.github.klahap.fraploy" version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.klahap.fraploy:fraploy:1.0.1"
}
}
apply plugin: "io.github.klahap.fraploy"