搜索Gradle插件

版本 2.3.1(最新版本)

2.3.1

创建于2024年8月18日。

Gradle插件,用于添加运行Waterfall代理的任务

使用 插件 DSL

plugins {
  id("xyz.jpenilla.run-waterfall") version "2.3.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("xyz.jpenilla:run-task:2.3.1")
  }
}

apply(plugin = "xyz.jpenilla.run-waterfall")

使用 插件 DSL

plugins {
  id "xyz.jpenilla.run-waterfall" version "2.3.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "xyz.jpenilla:run-task:2.3.1"
  }
}

apply plugin: "xyz.jpenilla.run-waterfall"

学习如何将插件应用于子项目