Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.checkerframework") version "0.6.47"
}

See also:

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