Search Gradle plugins

Version 0.2.0 (latest)

0.2.0

Created 28 March 2023.

A Gradle plugin for Waterfall plugin development.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.grassmc.mcdev.waterfall") version "0.2.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.grassmc.mcdev:mcdev-gradle-plugin:0.2.0")
      }
    }
    
    apply(plugin = "io.github.grassmc.mcdev.waterfall")
  • Applying plugins to all subprojects .