d10xa / gradle-allure-plugin

Gradle plugin generating Allure report from test results
Apache License 2.0
23 stars 2 forks source link

when is the next release? #13

Open rameshnatesan opened 5 years ago

rameshnatesan commented 5 years ago

Eager to see the next release that supports latest Allure, Spock and Geb versions

rmarinsky commented 5 years ago

Allure2 have own version of gradle plugin. https://plugins.gradle.org/plugin/io.qameta.allure

rameshnatesan commented 5 years ago

Allure2 have own version of gradle plugin. https://plugins.gradle.org/plugin/io.qameta.allure

but I think that Allure extension from qa meta does not support Geb

rmarinsky commented 5 years ago

@rameshnatesan try to use Selenide - much better than Geb https://github.com/selenide/selenide

d10xa commented 5 years ago

@rameshnatesan Please try to add following to your buildfile with plugin io.qameta.allure

repositories {
    maven { url 'https://jitpack.io' }
}
configurations.all {
    resolutionStrategy {
        forcedModules = ['com.github.d10xa:allure-spock-geb:7f122b0a32']
    }
}
dependencies {
    testCompile "com.github.d10xa:allure-spock-geb:7f122b0a32"
}