com.marksandspencer.integration-test
所有者: Orion Team
集成测试配置
https://github.com/DigitalInnovation
资源: https://github.com/DigitalInnovation/mands-gradle-integration-test
使用 插件 DSL
plugins {
id("com.marksandspencer.integration-test") version "1.0.1"
}
使用 传统插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.marksandspencer:mands-gradle-integration-test:1.0.1")
}
}
apply(plugin = "com.marksandspencer.integration-test")
使用 插件 DSL
plugins {
id "com.marksandspencer.integration-test" version "1.0.1"
}
使用 传统插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.marksandspencer:mands-gradle-integration-test:1.0.1"
}
}
apply plugin: "com.marksandspencer.integration-test"