com.dua3.cabe
                  Owner:
                  
                    
                    Axel Howind
                  
                
A plugin that adds assertions for annotated method parameters at compile time.
https://github.com/xzel23/cabe.git
Sources: https://github.com/xzel23/cabe
Version 2.0-beta2
Created 18 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-beta2"
}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-beta2") }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-beta2") } } apply(plugin = "com.dua3.cabe")
- Applying plugins to all subprojects .