com.marksandspencer.system-test
所有者: Orion团队
系统测试配置
https://github.com/DigitalInnovation
源码: https://github.com/DigitalInnovation/mands-gradle-system-test
版本 1.0.0 (最新版)
1.0.0
创建于2016年12月12日。
系统测试配置
使用插件DSL
plugins {
id("com.marksandspencer.system-test") version "1.0.0"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.marksandspencer:mands-gradle-system-test:1.0.0")
}
}
apply(plugin = "com.marksandspencer.system-test")
使用插件DSL
plugins {
id "com.marksandspencer.system-test" version "1.0.0"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.marksandspencer:mands-gradle-system-test:1.0.0"
}
}
apply plugin: "com.marksandspencer.system-test"