Search Gradle plugins

Version 0.13.0 (latest)

0.13.0

Created 06 May 2023.

Kotlin Compiler Plugin to add power to your assertions

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.bnorm.power.kotlin-power-assert") version "0.13.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.bnorm.power:kotlin-power-assert-gradle:0.13.0")
      }
    }
    
    apply(plugin = "com.bnorm.power.kotlin-power-assert")
  • Applying plugins to all subprojects .