Version 1.0-SNAPSHOT (latest)
1.0-SNAPSHOT
Created 31 August 2016.
Cuke Parallel Generator
Using the plugins DSL:
plugins {
id("com.tv.gradle.cukeGenerator") version "1.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.tv.gradle:CukeIT-Parallel-Generator:1.0-SNAPSHOT")
}
}
apply(plugin = "com.tv.gradle.cukeGenerator")
Using the plugins DSL:
plugins {
id "com.tv.gradle.cukeGenerator" version "1.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.tv.gradle:CukeIT-Parallel-Generator:1.0-SNAPSHOT"
}
}
apply plugin: "com.tv.gradle.cukeGenerator"