Search Gradle plugins

Version 0.2.2 (latest)

Created 20 December 2018.

Gradle plugin to use the Checker Framework for Java.

Using the plugins DSL:

plugins {
  id("com.jaredsburrows.checkerframework") version "0.2.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.jaredsburrows:gradle-checker-framework-plugin:0.2.2")
  }
}

apply(plugin = "com.jaredsburrows.checkerframework")

Using the plugins DSL:

plugins {
  id "com.jaredsburrows.checkerframework" version "0.2.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.jaredsburrows:gradle-checker-framework-plugin:0.2.2"
  }
}

apply plugin: "com.jaredsburrows.checkerframework"

Learn how to apply plugins to subprojects