Search Gradle plugins

Add this plugin to your build using the plugins DSL:

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

See also:

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