搜索Gradle插件

版本 0.13 (最新版本)

0.13

创建于 2024年6月25日。

一个用于显示测试执行统计信息的Gradle插件

使用 plugins DSL

plugins {
  id("io.github.paul-manjarres.test-time-reporter") version "0.13"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.paul-manjarres:plugin:0.13")
  }
}

apply(plugin = "io.github.paul-manjarres.test-time-reporter")

使用 plugins DSL

plugins {
  id "io.github.paul-manjarres.test-time-reporter" version "0.13"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.paul-manjarres:plugin:0.13"
  }
}

apply plugin: "io.github.paul-manjarres.test-time-reporter"

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