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

1.3.0

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.

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.elangbayu:xray-gradle:1.3.0")
      }
    }
    
    apply(plugin = "io.github.elangbayu.xray-gradle")
  • Applying plugins to all subprojects .