Search Gradle plugins

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

Version 0.3.2 (latest)

Created 12 November 2015.

No version description available.

Using the plugins DSL:

plugins {
  id("com.blogspot.toomuchcoding.testprofiler") version "0.3.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.blogspot.toomuchcoding:gradle-test-profiler:0.3.2")
  }
}

apply(plugin = "com.blogspot.toomuchcoding.testprofiler")

Using the plugins DSL:

plugins {
  id "com.blogspot.toomuchcoding.testprofiler" version "0.3.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.blogspot.toomuchcoding:gradle-test-profiler:0.3.2"
  }
}

apply plugin: "com.blogspot.toomuchcoding.testprofiler"

Learn how to apply plugins to subprojects