com.bnorm.power.kotlin-power-assert
Owner: Brian Norman
Kotlin Compiler Plugin to add power to your assertions
https://github.com/bnorm/kotlin-power-assert
Sources: https://github.com/bnorm/kotlin-power-assert.git
Version 0.12.1
0.12.1
Created 09 April 2023.
Kotlin Compiler Plugin to add power to your assertions
Using the plugins DSL:
plugins {
id("com.bnorm.power.kotlin-power-assert") version "0.12.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.bnorm.power:kotlin-power-assert-gradle:0.12.1")
}
}
apply(plugin = "com.bnorm.power.kotlin-power-assert")
Using the plugins DSL:
plugins {
id "com.bnorm.power.kotlin-power-assert" version "0.12.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.bnorm.power:kotlin-power-assert-gradle:0.12.1"
}
}
apply plugin: "com.bnorm.power.kotlin-power-assert"