搜索Gradle插件

版本 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"

了解如何将插件应用于子项目