Search Gradle plugins

Version 1.0.8 (latest)

1.0.8

Created 26 July 2024.

Utilities to import xunit into build scans

Using the plugins DSL:

plugins {
  id("co.elastic.build-scan.xunit") version "1.0.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("co.elastic.gradle:build-scan-xunit:1.0.8")
  }
}

apply(plugin = "co.elastic.build-scan.xunit")

Using the plugins DSL:

plugins {
  id "co.elastic.build-scan.xunit" version "1.0.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "co.elastic.gradle:build-scan-xunit:1.0.8"
  }
}

apply plugin: "co.elastic.build-scan.xunit"

Learn how to apply plugins to subprojects