Search Gradle plugins

Version 0.2.1

Created 13 March 2018.

Gradle plugin to use the Checker Framework for Java.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.jaredsburrows.checkerframework"

Learn how to apply plugins to subprojects