ch.tutteli.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 1.0.0 (latest)
Created 17 July 2021.
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.spek") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ch.tutteli:tutteli-gradle-spek:1.0.0")
}
}
apply(plugin = "ch.tutteli.spek")
Using the plugins DSL:
plugins {
id "ch.tutteli.spek" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ch.tutteli:tutteli-gradle-spek:1.0.0"
}
}
apply plugin: "ch.tutteli.spek"