搜索 Gradle 插件

io.github.klahap.fraploy

所有者: Klaus Happacher

Gradle 插件,用于将 Frappe 应用更新部署到 Frappe Cloud。

https://github.com/klahap/fraploy

源码:https://github.com/klahap/fraploy.git

版本 1.0.1 (最新版)

1.0.1

创建于 2024年8月14日。

Gradle 插件,用于将 Frappe 应用更新部署到 Frappe Cloud。

使用 插件 DSL

plugins {
  id("io.github.klahap.fraploy") version "1.0.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.klahap.fraploy:fraploy:1.0.1")
  }
}

apply(plugin = "io.github.klahap.fraploy")

使用 插件 DSL

plugins {
  id "io.github.klahap.fraploy" version "1.0.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.klahap.fraploy:fraploy:1.0.1"
  }
}

apply plugin: "io.github.klahap.fraploy"

了解如何将插件应用于子项目