Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.hello2morrow.sonargraph") version "11.6.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.hello2morrow:sonargraph-gradle-plugin:11.6.4")
      }
    }
    
    apply(plugin = "com.hello2morrow.sonargraph")
  • Applying plugins to all subprojects .