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 (latest)
Created 21 June 2019.
Plugin that creates pretty looking integration test reports for D3 projects
Add this plugin to your build using the plugins DSL:
plugins {
id("com.github.dolgopolovwork.testreport") version "1.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.github.dolgopolovwork.testreport:com.github.dolgopolovwork.testreport.gradle.plugin:1.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.github.dolgopolovwork.testreport") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.dolgopolovwork.testreport:com.github.dolgopolovwork.testreport.gradle.plugin:1.1") } } apply(plugin = "com.github.dolgopolovwork.testreport")
- Applying plugins to all subprojects .