Search Gradle plugins

io.kotlintest

Adds support to Gradle for running KotlinTest directly using the powerful console runner KotlinTest provides

http://www.kotlintest.io

Sources: https://github.com/kotlintest

Version 1.1.0

Created 21 July 2019.

Adds support to Gradle for running KotlinTest directly using the powerful console runner KotlinTest provides

Using the plugins DSL:

plugins {
  id("io.kotlintest") version "1.1.0"
}

Using legacy plugin application:

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

apply(plugin = "io.kotlintest")

Using the plugins DSL:

plugins {
  id "io.kotlintest" version "1.1.0"
}

Using legacy plugin application:

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

apply plugin: "io.kotlintest"

Learn how to apply plugins to subprojects