dev.kensa.gradle-plugin
Owner:
Paul Brooks
Gradle plugin for Kensa compiler plugin integration
Sources: https://github.com/kensa-dev/kensa
Version 0.5.30 (latest)
Created 28 October 2025.
Gradle plugin for Kensa compiler plugin integration
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.kensa.gradle-plugin") version "0.5.30"
}
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("dev.kensa.gradle-plugin:dev.kensa.gradle-plugin.gradle.plugin:0.5.30") }It can then be applied in the precompiled script plugin:plugins { id("dev.kensa.gradle-plugin") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.kensa.gradle-plugin:dev.kensa.gradle-plugin.gradle.plugin:0.5.30") } } apply(plugin = "dev.kensa.gradle-plugin") - Applying plugins to all subprojects .