Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("firedancer.bundling-plugin") version "1.2.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.foxfarmroad.firedancer:firedancer-bundling-plugin:1.2.1")
      }
    }
    
    apply(plugin = "firedancer.bundling-plugin")
  • Applying plugins to all subprojects .