com.github.dolgopolovwork.testreport
Owner: Anton Dolgopolov
Plugin that creates pretty looking integration test reports for D3 projects
Sources: https://github.com/d3ledger/d3-test-report-plugin
Version 1
1
Created 18 June 2019.
Plugin that creates pretty looking integration test reports for D3 projects
Using the plugins DSL:
plugins {
id("com.github.dolgopolovwork.testreport") version "1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.dolgopolovwork:testreport:1")
}
}
apply(plugin = "com.github.dolgopolovwork.testreport")
Using the plugins DSL:
plugins {
id "com.github.dolgopolovwork.testreport" version "1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.dolgopolovwork:testreport:1"
}
}
apply plugin: "com.github.dolgopolovwork.testreport"