Search Gradle plugins

com.palantir.failure-reports

A Gradle plugin that detects failures in CircleCI jobs and converts them into JUnit test reports that can be rendered in CircleCI UI.

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

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

Version 1.13.0 (latest)

Created 17 September 2024.

A Gradle plugin that detects failures in CircleCI jobs and converts them into JUnit test reports that can be rendered in CircleCI UI.

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.palantir.failure-reports:com.palantir.failure-reports.gradle.plugin:1.13.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.palantir.failure-reports")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.palantir.failure-reports:com.palantir.failure-reports.gradle.plugin:1.13.0")
      }
    }
    
    apply(plugin = "com.palantir.failure-reports")
  • Applying plugins to all subprojects .