Search Gradle plugins

io.github.guidewire-oss.fern-publisher

This plugin simplifies the process of collecting JUnit XML test reports and publishing them to a Fern test reporting service. It parses JUnit XML reports, converts them to Fern's data model, and sends them to your Fern instance through its API. To learn more about Fern, check out its repository: https://github.com/guidewire-oss/fern-reporter

https://github.com/guidewire-oss/fern-junit-gradle-plugin

Sources: https://github.com/guidewire-oss/fern-junit-gradle-plugin

Version 0.1.1 (latest)

Created 02 May 2025.

This plugin simplifies the process of collecting JUnit XML test reports and publishing them to a Fern test reporting service. It parses JUnit XML reports, converts them to Fern's data model, and sends them to your Fern instance through its API. To learn more about Fern, check out its repository: https://github.com/guidewire-oss/fern-reporter

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.guidewire-oss.fern-publisher") version "0.1.1"
}

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("io.github.guidewire-oss.fern-publisher:io.github.guidewire-oss.fern-publisher.gradle.plugin:0.1.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.guidewire-oss.fern-publisher")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.guidewire-oss.fern-publisher:io.github.guidewire-oss.fern-publisher.gradle.plugin:0.1.1")
      }
    }
    
    apply(plugin = "io.github.guidewire-oss.fern-publisher")
  • Applying plugins to all subprojects .