Search Gradle plugins

Version 1.1.2 (latest)

1.1.2

Created 30 January 2022.

Automatically download your dependencies at runtime on Spigot 1.16.5+

Add this plugin to your build using the plugins DSL:

plugins {
  id("de.nycode.spigot-dependency-loader") version "1.1.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("de.nycode:spigot-dependency-loader:1.1.2")
      }
    }
    
    apply(plugin = "de.nycode.spigot-dependency-loader")
  • Applying plugins to all subprojects .