com.jaredsburrows.checkerframework
Owner: Jared Burrows
Gradle plugin to use the Checker Framework for Java.
https://github.com/jaredsburrows/gradle-checker-framework-plugin
Sources: https://github.com/jaredsburrows/gradle-checker-framework-plugin
Version 0.2.2 (latest)
0.2.2
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"