Search Gradle plugins

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.checkerframework:checkerframework-gradle-plugin:0.3.3")
  }
}

apply(plugin = "org.checkerframework")

Using the plugins DSL:

plugins {
  id "org.checkerframework" version "0.3.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.checkerframework:checkerframework-gradle-plugin:0.3.3"
  }
}

apply plugin: "org.checkerframework"

Learn how to apply plugins to subprojects