Search Gradle plugins

com.softicar.gradle.test.logger

Owner: SoftiCAR

This plugin can be used to debug problems (e.g. concerning performance or determinism) during test execution.

https://github.com/softicar/gradle-plugins

Sources: https://github.com/Prevent-DEV/com.softicar.gradle.plugins

Version 4.0.5 (latest)

4.0.5

Created 06 February 2023.

This plugin can be used to debug problems (e.g. concerning performance or determinism) during test execution.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.softicar.gradle.test.logger") version "4.0.5"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.softicar.gradle.plugins:gradle-plugins:4.0.5")
      }
    }
    
    apply(plugin = "com.softicar.gradle.test.logger")
  • Applying plugins to all subprojects .