搜索 Gradle 插件

版本 1.1 (最新版)

1.1

创建于 2019 年 6 月 21 日。

为 D3 项目创建美观的集成测试报告的插件

使用插件 DSL

plugins {
  id("com.github.dolgopolovwork.testreport") version "1.1"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.dolgopolovwork:testreport:1.1")
  }
}

apply(plugin = "com.github.dolgopolovwork.testreport")

使用插件 DSL

plugins {
  id "com.github.dolgopolovwork.testreport" version "1.1"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.dolgopolovwork:testreport:1.1"
  }
}

apply plugin: "com.github.dolgopolovwork.testreport"

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