Search Gradle plugins

com.dua3.cabe

A plugin that adds assertions for annotated method parameters at compile time.

https://github.com/xzel23/cabe

Sources: https://github.com/xzel23/cabe

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.dua3.cabe") version "2.1-beta1"
}

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.1-beta1")
    }
    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.1-beta1")
      }
    }
    
    apply(plugin = "com.dua3.cabe")
  • Applying plugins to all subprojects .