org.checkerframework
Owner: Martin Kellogg
Re-usable build logic for extending the Java type system via the Checker Framework, for Gradle builds
https://github.com/kelloggm/checkerframework-gradle-plugin/blob/master/README.md
Sources: https://github.com/kelloggm/checkerframework-gradle-plugin
Version 0.5.20
0.5.20
Created 04 May 2021.
Re-usable build logic for extending the Java type system via the Checker Framework, for Gradle builds
Using the plugins DSL:
plugins {
id("org.checkerframework") version "0.5.20"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.checkerframework:checkerframework-gradle-plugin:0.5.20")
}
}
apply(plugin = "org.checkerframework")
Using the plugins DSL:
plugins {
id "org.checkerframework" version "0.5.20"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.checkerframework:checkerframework-gradle-plugin:0.5.20"
}
}
apply plugin: "org.checkerframework"