Search Gradle plugins

Version 0.2.5

Created 01 October 2020.

Adds support to Gradle for running Kotest tests

Using the plugins DSL:

plugins {
  id("io.kotest") version "0.2.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.kotest:kotest-gradle-plugin:0.2.5")
  }
}

apply(plugin = "io.kotest")

Using the plugins DSL:

plugins {
  id "io.kotest" version "0.2.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.kotest:kotest-gradle-plugin:0.2.5"
  }
}

apply plugin: "io.kotest"

Learn how to apply plugins to subprojects