Search Gradle plugins

Version 1.1.5-1.2.10 (latest)

Created 18 December 2017.

Gradle plugin that provides minimum settings of spek testing framework.

Using the plugins DSL:

plugins {
  id("org.mikeneck.junit.starter.spek") version "1.1.5-1.2.10"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.mikeneck.junit.starter:spek:1.1.5-1.2.10")
  }
}

apply(plugin = "org.mikeneck.junit.starter.spek")

Using the plugins DSL:

plugins {
  id "org.mikeneck.junit.starter.spek" version "1.1.5-1.2.10"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.mikeneck.junit.starter:spek:1.1.5-1.2.10"
  }
}

apply plugin: "org.mikeneck.junit.starter.spek"

Learn how to apply plugins to subprojects