io.github.fourlastor.pickle-processor
Owner: Daniele Conti
An implementation of Cucumber for Android which generates the tests classes at compile time instead of runtime
https://github.com/fourlastor/pickle/
Sources: https://github.com/fourlastor/pickle/
Version 2.1.0 (latest)
2.1.0
Created 04 April 2021.
An implementation of Cucumber for Android which generates the tests classes at compile time instead of runtime
Using the plugins DSL:
plugins {
id("io.github.fourlastor.pickle-processor") version "2.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.fourlastor:pickle-plugin:2.1.0")
}
}
apply(plugin = "io.github.fourlastor.pickle-processor")
Using the plugins DSL:
plugins {
id "io.github.fourlastor.pickle-processor" version "2.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.fourlastor:pickle-plugin:2.1.0"
}
}
apply plugin: "io.github.fourlastor.pickle-processor"