com.zegreatrob.jsmints.plugins.wdiotest
Owner: Rob Murdock
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 5.0.12
5.0.12
Created 16 November 2023.
This plugin adds support for using wdio.js with Kotlin JS, with some configuration conveniences.
Using the plugins DSL:
plugins {
id("com.zegreatrob.jsmints.plugins.wdiotest") version "5.0.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.zegreatrob.jsmints:plugins:5.0.12")
}
}
apply(plugin = "com.zegreatrob.jsmints.plugins.wdiotest")
Using the plugins DSL:
plugins {
id "com.zegreatrob.jsmints.plugins.wdiotest" version "5.0.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.zegreatrob.jsmints:plugins:5.0.12"
}
}
apply plugin: "com.zegreatrob.jsmints.plugins.wdiotest"