Search Gradle plugins

io.github.elangbayu.xray-gradle

The XRAY Gradle Plugin is a plugin that integrates with the XRAY Test Management tool to enable seamless test execution and reporting.

https://github.com/elangbayu/xray-gradle

Sources: https://github.com/elangbayu/xray-gradle

Version 1.3.0 (latest)

Created 21 March 2024.

The XRAY Gradle Plugin is a plugin that integrates with the XRAY Test Management tool to enable seamless test execution and reporting.

Using the plugins DSL:

plugins {
  id("io.github.elangbayu.xray-gradle") version "1.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.elangbayu:xray-gradle:1.3.0")
  }
}

apply(plugin = "io.github.elangbayu.xray-gradle")

Using the plugins DSL:

plugins {
  id "io.github.elangbayu.xray-gradle" version "1.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.elangbayu:xray-gradle:1.3.0"
  }
}

apply plugin: "io.github.elangbayu.xray-gradle"

Learn how to apply plugins to subprojects