Version 0.3.9 (latest)
Created 15 December 2021.
Adds support to Gradle for running Kotest tests
Using the plugins DSL:
plugins {
id("io.kotest") version "0.3.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.kotest:kotest-gradle-plugin:0.3.9")
}
}
apply(plugin = "io.kotest")
Using the plugins DSL:
plugins {
id "io.kotest" version "0.3.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.kotest:kotest-gradle-plugin:0.3.9"
}
}
apply plugin: "io.kotest"