com.dua3.cabe
Owner: Axel Howind
A plugin that adds assertions for annotated method parameters at compile time.
https://github.com/xzel23/cabe
Sources: https://github.com/xzel23/cabe
Version 2.0-beta6
Created 20 December 2023.
A plugin that adds assertions for annotated method parameters at compile time.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.dua3.cabe") version "2.0-beta6"
}
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("com.dua3.cabe:com.dua3.cabe.gradle.plugin:2.0-beta6") }
It can then be applied in the precompiled script plugin:plugins { id("com.dua3.cabe") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.dua3.cabe:com.dua3.cabe.gradle.plugin:2.0-beta6") } } apply(plugin = "com.dua3.cabe")
- Applying plugins to all subprojects .