Search Gradle plugins

Version 1.0.2 (latest)

1.0.2

Created 27 March 2020.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.gitlab.et.paralleltests:gradle-parallel-cucumber-tests:1.0.2")
      }
    }
    
    apply(plugin = "com.gitlab.et.paralleltests")
  • Applying plugins to all subprojects .