com.github.dolgopolovwork.testreport
所有者: Anton Dolgopolov
为 D3 项目创建美观的集成测试报告的插件
来源:https://github.com/d3ledger/d3-test-report-plugin
使用插件 DSL
plugins {
id("com.github.dolgopolovwork.testreport") version "1.1"
}
使用旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.dolgopolovwork:testreport:1.1")
}
}
apply(plugin = "com.github.dolgopolovwork.testreport")
使用插件 DSL
plugins {
id "com.github.dolgopolovwork.testreport" version "1.1"
}
使用旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.dolgopolovwork:testreport:1.1"
}
}
apply plugin: "com.github.dolgopolovwork.testreport"