io.github.kranberry-io.runtests
所有者: Angelica Oliveira
允许以简单方式运行 kranberry 测试的功能插件
https://github.com/kranberry-io
来源: https://github.com/kranberry-io/kranberry
使用 plugins DSL
plugins {
id("io.github.kranberry-io.runtests") version "1.0.5-beta"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.kranberry-io:runtests:1.0.5-beta")
}
}
apply(plugin = "io.github.kranberry-io.runtests")
使用 plugins DSL
plugins {
id "io.github.kranberry-io.runtests" version "1.0.5-beta"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.kranberry-io:runtests:1.0.5-beta"
}
}
apply plugin: "io.github.kranberry-io.runtests"