Search Gradle plugins

Scans sources for JaCoCo marker annotations (default: @ExcludeFromJacocoGeneratedCodeCoverage) that should be excluded from code coverage and generates an HTML+XML report with excluded code.

https://github.com/Arc-E-Tect/SoftwareEngineeringDoneRight-Gradle/tree/main/jacoco-exclusion-report

Sources: https://github.com/Arc-E-Tect/SoftwareEngineeringDoneRight-Gradle.git

Version 0.1.2 (latest)

Created 23 April 2026.

Scans sources for JaCoCo marker annotations (default: @ExcludeFromJacocoGeneratedCodeCoverage) that should be excluded from code coverage and generates an HTML+XML report with excluded code.

Gradle features compatibility:
Configuration cache

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.arc-e-tect.jacoco-exclusion-report") version "0.1.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.arc-e-tect.jacoco-exclusion-report:com.arc-e-tect.jacoco-exclusion-report.gradle.plugin:0.1.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.arc-e-tect.jacoco-exclusion-report")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.arc-e-tect.jacoco-exclusion-report:com.arc-e-tect.jacoco-exclusion-report.gradle.plugin:0.1.2")
      }
    }
    
    apply(plugin = "com.arc-e-tect.jacoco-exclusion-report")
  • Applying plugins to all subprojects .