Search Gradle plugins

Version 4.0.0 (latest)

Created 11 October 2023.

A Gradle plugin for printing beautiful logs on the console while running tests

Add this plugin to your build using the plugins DSL:

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