Search Gradle plugins

com.zegreatrob.jsmints.plugins.wdiotest

This plugin adds support for using wdio.js with Kotlin JS, with some configuration conveniences.

https://github.com/robertfmurdock/jsmints

Sources: https://github.com/robertfmurdock/jsmints

Version 6.1.4

6.1.4

Created 14 July 2024.

This plugin adds support for using wdio.js with Kotlin JS, with some configuration conveniences.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.zegreatrob.jsmints.plugins.wdiotest") version "6.1.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.zegreatrob.jsmints:plugins:6.1.4")
      }
    }
    
    apply(plugin = "com.zegreatrob.jsmints.plugins.wdiotest")
  • Applying plugins to all subprojects .