Search Gradle plugins

Version 0.1.0-SNAPSHOT

0.1.0-SNAPSHOT

Created 06 February 2020.

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.1.0-SNAPSHOT"
}

See also:

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