Search Gradle plugins

Version 2.3.4

2.3.4

Created 16 January 2022.

An intelligent Gradle plugin for developing Spigot plugin.

Add this plugin to your build using the plugins DSL:

plugins {
  id("kr.entree.spigradle") version "2.3.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("kr.entree:spigradle:2.3.4")
      }
    }
    
    apply(plugin = "kr.entree.spigradle")
  • Applying plugins to all subprojects .