搜索 Gradle 插件

com.palantir.failure-reports

一个 Gradle 插件,用于检测 CircleCI 作业中的失败,并将它们转换为可在 CircleCI UI 中显示的 JUnit 测试报告。

https://github.com/palantir/gradle-failure-reports

来源: https://github.com/palantir/gradle-failure-reports

版本 1.11.0 (最新版)

1.11.0

创建于 2024 年 8 月 8 日。

一个 Gradle 插件,用于检测 CircleCI 作业中的失败,并将它们转换为可在 CircleCI UI 中显示的 JUnit 测试报告。

使用 插件 DSL

plugins {
  id("com.palantir.failure-reports") version "1.11.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.palantir.gradle.failure-reports:gradle-failure-reports:1.11.0")
  }
}

apply(plugin = "com.palantir.failure-reports")

使用 插件 DSL

plugins {
  id "com.palantir.failure-reports" version "1.11.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.palantir.gradle.failure-reports:gradle-failure-reports:1.11.0"
  }
}

apply plugin: "com.palantir.failure-reports"

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