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
Sources: https://github.com/robstoll/tutteli-gradle-plugins.git
Version 5.0.1 (latest)
5.0.1
Created 24 January 2024.
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 "5.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ch.tutteli:tutteli-gradle-spek:5.0.1")
}
}
apply(plugin = "ch.tutteli.gradle.plugins.spek")
Using the plugins DSL:
plugins {
id "ch.tutteli.gradle.plugins.spek" version "5.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ch.tutteli:tutteli-gradle-spek:5.0.1"
}
}
apply plugin: "ch.tutteli.gradle.plugins.spek"