Search Gradle plugins

Version 0.13.0 (latest)

Created 06 May 2023.

Kotlin Compiler Plugin to add power to your assertions

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.bnorm.power:kotlin-power-assert-gradle:0.13.0")
  }
}

apply(plugin = "com.bnorm.power.kotlin-power-assert")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.bnorm.power:kotlin-power-assert-gradle:0.13.0"
  }
}

apply plugin: "com.bnorm.power.kotlin-power-assert"

Learn how to apply plugins to subprojects