Search Gradle plugins

Add this plugin to your build using the plugins DSL:

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

See also:

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