Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("pub.ihub.plugin.ihub-groovy") version "1.0.9"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("pub.ihub.plugin:ihub-plugins:1.0.9")
      }
    }
    
    apply(plugin = "pub.ihub.plugin.ihub-groovy")
  • Applying plugins to all subprojects .