Search Gradle plugins

Version 6.0.0.M1 (latest)

6.0.0.M1

Created 02 October 2024.

Adds support for JavaScript and Native tests in Kotest

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.kotest.multiplatform") version "6.0.0.M1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.kotest:kotest-framework-multiplatform-plugin-gradle:6.0.0.M1")
      }
    }
    
    apply(plugin = "io.kotest.multiplatform")
  • Applying plugins to all subprojects .