Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("pub.ihub.plugin.ihub-native") version "1.7.2"
}

See also:

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