Search Gradle plugins

ch.tutteli.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

Using the plugins DSL:

plugins {
  id("ch.tutteli.spek") version "0.13.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ch.tutteli:tutteli-gradle-spek:0.13.0")
  }
}

apply(plugin = "ch.tutteli.spek")

Using the plugins DSL:

plugins {
  id "ch.tutteli.spek" version "0.13.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ch.tutteli:tutteli-gradle-spek:0.13.0"
  }
}

apply plugin: "ch.tutteli.spek"

Learn how to apply plugins to subprojects