搜索Gradle插件

com.monnage.test-report

所有者: Jan Tobola

此插件预先配置了Java测试任务,它提供了令人惊叹的测试报告输出。

https://github.com/monnage/gradle-test-report

来源: https://github.com/monnage/gradle-test-report

版本 1.4(最新版)

1.4

创建日期 2020年12月9日。

此插件预先配置了Java测试任务,它提供了令人惊叹的测试报告输出。

使用 插件DSL

plugins {
  id("com.monnage.test-report") version "1.4"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.monnage.gradle:gradle-test-report:1.4")
  }
}

apply(plugin = "com.monnage.test-report")

使用 插件DSL

plugins {
  id "com.monnage.test-report" version "1.4"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.monnage.gradle:gradle-test-report:1.4"
  }
}

apply plugin: "com.monnage.test-report"

了解如何向子项目应用插件