io.kotest
Owner:
Stephen Samuel
Adds support to Gradle for running Kotest tests
Sources: https://github.com/kotest
Version 0.4.10 (latest)
Created 22 March 2023.
Adds support to Gradle for running Kotest tests
Using the plugins DSL:
plugins {
id("io.kotest") version "0.4.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.kotest:kotest-gradle-plugin:0.4.10")
}
}
apply(plugin = "io.kotest")
Using the plugins DSL:
plugins {
id "io.kotest" version "0.4.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.kotest:kotest-gradle-plugin:0.4.10"
}
}
apply plugin: "io.kotest"