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.6.3
Created 01 November 2021.
Re-usable build logic for extending the Java type system via the Checker Framework, for Gradle builds
Add this plugin to your build using the plugins DSL:
plugins {
id("org.checkerframework") version "0.6.3"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("org.checkerframework:org.checkerframework.gradle.plugin:0.6.3") }It can then be applied in the precompiled script plugin:plugins { id("org.checkerframework") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.checkerframework:org.checkerframework.gradle.plugin:0.6.3") } } apply(plugin = "org.checkerframework") - Applying plugins to all subprojects .