com.github.dolgopolovwork.testreport
Owner:
Anton Dolgopolov
Plugin that creates pretty looking integration test reports for D3 projects
Version 1.1 (latest)
Created 21 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.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.dolgopolovwork:testreport:1.1"
}
}
apply plugin: "com.github.dolgopolovwork.testreport"
Using the plugins DSL:
plugins {
id("com.github.dolgopolovwork.testreport") version "1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.dolgopolovwork:testreport:1.1")
}
}
apply(plugin = "com.github.dolgopolovwork.testreport")