Owner:
Paul Brooks
Gradle plugin for Kensa compiler plugin integration
https://kensa.dev/build-plugins
Sources: https://github.com/kensa-dev/kensa
Version 0.5.34 (latest)
Created 08 December 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.34"
}
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.34") }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.34") } } apply(plugin = "dev.kensa.gradle-plugin") - Applying plugins to all subprojects .