Search Gradle plugins

Version 2.3.1 (latest)

2.3.1

Created 18 August 2024.

Gradle plugin adding a task to run a Waterfall proxy

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("xyz.jpenilla:run-task:2.3.1")
      }
    }
    
    apply(plugin = "xyz.jpenilla.run-waterfall")
  • Applying plugins to all subprojects .