com.blogspot.toomuchcoding.testprofiler
The idea of this plugin is to perform profiling of your tests. You will be able to see your test execution times sorted in the descending manner together with an information about a module and the class name from which the test was executed.
https://github.com/marcingrzejszczak/gradle-test-profiler
Add this plugin to your build using the plugins DSL:
plugins {
id("com.blogspot.toomuchcoding.testprofiler") version "0.3.2"
}
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.blogspot.toomuchcoding.testprofiler:com.blogspot.toomuchcoding.testprofiler.gradle.plugin:0.3.2") }
It can then be applied in the precompiled script plugin:plugins { id("com.blogspot.toomuchcoding.testprofiler") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.blogspot.toomuchcoding.testprofiler:com.blogspot.toomuchcoding.testprofiler.gradle.plugin:0.3.2") } } apply(plugin = "com.blogspot.toomuchcoding.testprofiler")
- Applying plugins to all subprojects .