Search Gradle plugins

ch.tutteli.gradle.plugins.spek

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)

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"

Learn how to apply plugins to subprojects