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.5.0 (latest)

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