com.github.samueltbrown.cucumber
运行Cucumber测试的Gradle插件
https://github.com/samueltbrown/gradle-cucumber-plugin
使用 插件DSL
plugins {
id("com.github.samueltbrown.cucumber") version "0.9"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.samueltbrown:gradle-cucumber-plugin:0.9")
}
}
apply(plugin = "com.github.samueltbrown.cucumber")