com.monnage.test-report
Owner: Jan Tobola
This plugin pre-configures java test task which provides awesome test report output.
https://github.com/monnage/gradle-test-report
Sources: https://github.com/monnage/gradle-test-report
Version 1.4 (latest)
Created 09 December 2020.
This plugin pre-configures java test task which provides awesome test report output.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.monnage.test-report") version "1.4"
}
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.monnage.test-report:com.monnage.test-report.gradle.plugin:1.4") }
It can then be applied in the precompiled script plugin:plugins { id("com.monnage.test-report") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.monnage.test-report:com.monnage.test-report.gradle.plugin:1.4") } } apply(plugin = "com.monnage.test-report")
- Applying plugins to all subprojects .