Search Gradle plugins

Version 1.1.5-1.2.10 (latest)

1.1.5-1.2.10

Created 18 December 2017.

Gradle plugin that provides minimum settings of spek testing framework.

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.mikeneck.junit.starter:spek:1.1.5-1.2.10")
      }
    }
    
    apply(plugin = "org.mikeneck.junit.starter.spek")
  • Applying plugins to all subprojects .