Search Gradle plugins

Version 0.3

Created 02 August 2018.

Plugin to run cucumber tests in parallel with configurable cli class, also supports Serenity-BDD

Using the plugins DSL:

plugins {
  id("com.gitlab.et.paralleltests") version "0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.gitlab.et.paralleltests:gradle-parallel-cucumber-tests:0.3")
  }
}

apply(plugin = "com.gitlab.et.paralleltests")

Using the plugins DSL:

plugins {
  id "com.gitlab.et.paralleltests" version "0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.gitlab.et.paralleltests:gradle-parallel-cucumber-tests:0.3"
  }
}

apply plugin: "com.gitlab.et.paralleltests"

Learn how to apply plugins to subprojects