ch.tutteli.gradle.plugins.spek
Owner:
Robert Stoll
Applies the junitjacoco plugin and defines Spek as engine. Applies the kotlin plugin and sets up compile and test dependencies.
https://github.com/robstoll/tutteli-gradle-plugins
Version 4.9.0 (latest)
Created 12 May 2023.
Applies the junitjacoco plugin and defines Spek as engine. Applies the kotlin plugin and sets up compile and test dependencies.
Using the plugins DSL:
plugins {
id("ch.tutteli.gradle.plugins.spek") version "4.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ch.tutteli:tutteli-gradle-spek:4.9.0")
}
}
apply(plugin = "ch.tutteli.gradle.plugins.spek")
Using the plugins DSL:
plugins {
id "ch.tutteli.gradle.plugins.spek" version "4.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ch.tutteli:tutteli-gradle-spek:4.9.0"
}
}
apply plugin: "ch.tutteli.gradle.plugins.spek"