搜索Gradle插件

com.blogspot.toomuchcoding.testprofiler

这个插件的想法是对您的测试进行性能分析。您将能够以降序排列查看测试执行时间,并显示执行测试的模块和类名。

https://github.com/marcingrzejszczak/gradle-test-profiler

版本 0.3.2 (最新)

0.3.2

创建于 2015年11月12日。

没有可用的版本描述。

使用 插件 DSL

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

使用 旧插件应用

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

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

使用 插件 DSL

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

使用 旧插件应用

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

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

了解如何将插件应用于子项目