Search Gradle plugins

Version 1.0.1 (latest)

Created 22 December 2017.

A plugin to Run XRay Tests from Gradle along with other tests in the Java/Groovy 'test' task.

Using the plugins DSL:

plugins {
  id("uk.co.overstory.xray") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.uk.co.overstory.xray:plugin:1.0.1")
  }
}

apply(plugin = "uk.co.overstory.xray")

Using the plugins DSL:

plugins {
  id "uk.co.overstory.xray" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.uk.co.overstory.xray:plugin:1.0.1"
  }
}

apply plugin: "uk.co.overstory.xray"

Learn how to apply plugins to subprojects