hu.advancedweb.scott-gradle-plugin
所有者: David Csakvari
Scott为用Java编写的测试提供详细的失败消息,无需使用复杂的断言库,以帮助开发者快速开发、故障排除和调试测试。所有信息都以注释的形式呈现在测试方法的源代码上。
https://github.com/dodie/scott
来源: https://github.com/dodie/scott.git
版本 4.0.1 (最新版本)
4.0.1
创建日期:2021年9月29日。
Scott为用Java编写的测试提供详细的失败消息,无需使用复杂的断言库,以帮助开发者快速开发、故障排除和调试测试。所有信息都以注释的形式呈现在测试方法的源代码上。
使用 插件DSL
plugins {
id("hu.advancedweb.scott-gradle-plugin") version "4.0.1"
}
使用 旧版插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.hu.advanceweb:scott-gradle-plugin:4.0.1")
}
}
apply(plugin = "hu.advancedweb.scott-gradle-plugin")
使用 插件DSL
plugins {
id "hu.advancedweb.scott-gradle-plugin" version "4.0.1"
}
使用 旧版插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.hu.advanceweb:scott-gradle-plugin:4.0.1"
}
}
apply plugin: "hu.advancedweb.scott-gradle-plugin"