hu.advancedweb.scott-plugin-example
所有者: David Csakvari
Scott为Java编写的测试提供详细的错误信息,不使用复杂的断言库,以帮助开发者在快速开发、调试和解决问题时更加高效。所有信息都以注释的形式显示在测试方法的源代码中。
https://github.com/dodie/scott
来源: https://github.com/dodie/scott.git
版本 3.4.0 (最新版)
3.4.0
创建于 2018年12月4日。
Scott为Java编写的测试提供详细的错误信息,不使用复杂的断言库,以帮助开发者在快速开发、调试和解决问题时更加高效。所有信息都以注释的形式显示在测试方法的源代码中。
使用 插件的 DSL
plugins {
id("hu.advancedweb.scott-plugin-example") version "3.4.0"
}
使用 旧的插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.hu.advanceweb:scott-gradle-plugin:3.4.0")
}
}
apply(plugin = "hu.advancedweb.scott-plugin-example")
使用 插件的 DSL
plugins {
id "hu.advancedweb.scott-plugin-example" version "3.4.0"
}
使用 旧的插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.hu.advanceweb:scott-gradle-plugin:3.4.0"
}
}
apply plugin: "hu.advancedweb.scott-plugin-example"