io.github.cdsap.gcreport
Owner:
Inaki Villar Algaba
Includes GC stats obtained from the GC log
https://github.com/cdsap/GCReport
Sources: https://github.com/cdsap/GCReport.git
Version 0.1.0 (latest)
Created 09 March 2025.
Gradle plugin that collects GC metrics based on the GC logs generated during the build
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.cdsap.gcreport") version "0.1.0"
}
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("io.github.cdsap.gcreport:io.github.cdsap.gcreport.gradle.plugin:0.1.0") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.cdsap.gcreport") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.cdsap.gcreport:io.github.cdsap.gcreport.gradle.plugin:0.1.0") } } apply(plugin = "io.github.cdsap.gcreport")
- Applying plugins to all subprojects .